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