C:
char c = '\u9152';
printf("%c\n", c); // Output: 酒
JavaScript:
const char = '\u9152';
console.log(char); // Output: 酒
Java:
char c = '\u9152';
System.out.println(c); // Output: 酒
JSON:
{"text": "\u9152"} // Value: 酒
Python:
char = '\u9152'
print(char) # Output: 酒
Perl:
my $char = "\x{9152}";
print $char; # Output: 酒
PHP:
$char = "\x{9152}";
echo $char; // Output: 酒
Ruby:
char = "\u{9152}"
puts char # Output: 酒
Rust:
let c = '\u{9152}';
println!("{}", c); // Output: 酒
Go:
char := '\u9152'
fmt.Printf("%c\n", char) // Output: 酒
CSS:
/* CSS content property */
.element::before {
content: "\009152"; /* 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%92
MD5:
811ba9ddbf8ba61af81f99bffcc90b47
SHA1:
c979198bed96334f40aec722c901d747d69e211e
Base64:
6YWS