C:
char c = '\u9151';
printf("%c\n", c); // Output: 酑
JavaScript:
const char = '\u9151';
console.log(char); // Output: 酑
Java:
char c = '\u9151';
System.out.println(c); // Output: 酑
JSON:
{"text": "\u9151"} // Value: 酑
Python:
char = '\u9151'
print(char) # Output: 酑
Perl:
my $char = "\x{9151}";
print $char; # Output: 酑
PHP:
$char = "\x{9151}";
echo $char; // Output: 酑
Ruby:
char = "\u{9151}"
puts char # Output: 酑
Rust:
let c = '\u{9151}';
println!("{}", c); // Output: 酑
Go:
char := '\u9151'
fmt.Printf("%c\n", char) // Output: 酑
CSS:
/* CSS content property */
.element::before {
content: "\009151"; /* 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%91
MD5:
a8c187a42160545b187350c692d6af29
SHA1:
5c2675dafc9bc782482d2f83a123a312675c0f58
Base64:
6YWR