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