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