C:
char c = '\uABCF';
printf("%c\n", c); // Output: ꯏ
JavaScript:
const char = '\uABCF';
console.log(char); // Output: ꯏ
Java:
char c = '\uABCF';
System.out.println(c); // Output: ꯏ
JSON:
{"text": "\uABCF"} // Value: ꯏ
Python:
char = '\uABCF'
print(char) # Output: ꯏ
Perl:
my $char = "\x{ABCF}";
print $char; # Output: ꯏ
PHP:
$char = "\x{ABCF}";
echo $char; // Output: ꯏ
Ruby:
char = "\u{ABCF}"
puts char # Output: ꯏ
Rust:
let c = '\u{ABCF}';
println!("{}", c); // Output: ꯏ
Go:
char := '\uABCF'
fmt.Printf("%c\n", char) // Output: ꯏ
CSS:
/* CSS content property */
.element::before {
content: "\00ABCF"; /* Display: ꯏ */
}
HTML Decimal:
<p>HTML decimal: ꯏ</p> <!-- Display: ꯏ -->
HTML Hexadecimal:
<p>HTML hex: ꯏ</p> <!-- Display: ꯏ -->
URL Encoding:
// ꯏ URL encoding
https://unicodefinder.com/search.php?query=%EA%AF%8F
MD5:
d7e901c77bf8df7dbef835fa8644576c
SHA1:
061d91d938b2d3bb0a1a4959cc1df7084c815ee9
Base64:
6q+P