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