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