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