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