C:
char c = '\u9154';
printf("%c\n", c); // Output: 酔
JavaScript:
const char = '\u9154';
console.log(char); // Output: 酔
Java:
char c = '\u9154';
System.out.println(c); // Output: 酔
JSON:
{"text": "\u9154"} // Value: 酔
Python:
char = '\u9154'
print(char) # Output: 酔
Perl:
my $char = "\x{9154}";
print $char; # Output: 酔
PHP:
$char = "\x{9154}";
echo $char; // Output: 酔
Ruby:
char = "\u{9154}"
puts char # Output: 酔
Rust:
let c = '\u{9154}';
println!("{}", c); // Output: 酔
Go:
char := '\u9154'
fmt.Printf("%c\n", char) // Output: 酔
CSS:
/* CSS content property */
.element::before {
content: "\009154"; /* 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%94
MD5:
f4e8c3c17e65d2ad1c83e74a7ee57e9d
SHA1:
3c21c3743742b2f6129e4fcce7ae5c739f9739bf
Base64:
6YWU