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