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