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