C:
char c = '\uAB64';
printf("%c\n", c); // Output: ꭤ
JavaScript:
const char = '\uAB64';
console.log(char); // Output: ꭤ
Java:
char c = '\uAB64';
System.out.println(c); // Output: ꭤ
JSON:
{"text": "\uAB64"} // Value: ꭤ
Python:
char = '\uAB64'
print(char) # Output: ꭤ
Perl:
my $char = "\x{AB64}";
print $char; # Output: ꭤ
PHP:
$char = "\x{AB64}";
echo $char; // Output: ꭤ
Ruby:
char = "\u{AB64}"
puts char # Output: ꭤ
Rust:
let c = '\u{AB64}';
println!("{}", c); // Output: ꭤ
Go:
char := '\uAB64'
fmt.Printf("%c\n", char) // Output: ꭤ
CSS:
/* CSS content property */
.element::before {
content: "\00AB64"; /* 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%AD%A4
MD5:
b7f10c605f28753374051ec2202f9cd0
SHA1:
9829e5233b9ca8b225b8b6e819520940ec71154a
Base64:
6q2k