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