C:
char c = '\u9147';
printf("%c\n", c); // Output: 酇
JavaScript:
const char = '\u9147';
console.log(char); // Output: 酇
Java:
char c = '\u9147';
System.out.println(c); // Output: 酇
JSON:
{"text": "\u9147"} // Value: 酇
Python:
char = '\u9147'
print(char) # Output: 酇
Perl:
my $char = "\x{9147}";
print $char; # Output: 酇
PHP:
$char = "\x{9147}";
echo $char; // Output: 酇
Ruby:
char = "\u{9147}"
puts char # Output: 酇
Rust:
let c = '\u{9147}';
println!("{}", c); // Output: 酇
Go:
char := '\u9147'
fmt.Printf("%c\n", char) // Output: 酇
CSS:
/* CSS content property */
.element::before {
content: "\009147"; /* 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%87
MD5:
b9be9d783800a6a91f67af6205a478c9
SHA1:
d2cde71eb727378034d8b5a03a6ac6063fb677ad
Base64:
6YWH