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