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