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