C:
char c = '\u914A';
printf("%c\n", c); // Output: 酊
JavaScript:
const char = '\u914A';
console.log(char); // Output: 酊
Java:
char c = '\u914A';
System.out.println(c); // Output: 酊
JSON:
{"text": "\u914A"} // Value: 酊
Python:
char = '\u914A'
print(char) # Output: 酊
Perl:
my $char = "\x{914A}";
print $char; # Output: 酊
PHP:
$char = "\x{914A}";
echo $char; // Output: 酊
Ruby:
char = "\u{914A}"
puts char # Output: 酊
Rust:
let c = '\u{914A}';
println!("{}", c); // Output: 酊
Go:
char := '\u914A'
fmt.Printf("%c\n", char) // Output: 酊
CSS:
/* CSS content property */
.element::before {
content: "\00914A"; /* 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=%E9%85%8A
MD5:
e41e854c8e3a18006da0a62ee91289c6
SHA1:
5d67127f614ba2d6f47b5ba73309fc2d5cbb6f02
Base64:
6YWK