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