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