C:
char c = '\u9164';
printf("%c\n", c); // Output: 酤
JavaScript:
const char = '\u9164';
console.log(char); // Output: 酤
Java:
char c = '\u9164';
System.out.println(c); // Output: 酤
JSON:
{"text": "\u9164"} // Value: 酤
Python:
char = '\u9164'
print(char) # Output: 酤
Perl:
my $char = "\x{9164}";
print $char; # Output: 酤
PHP:
$char = "\x{9164}";
echo $char; // Output: 酤
Ruby:
char = "\u{9164}"
puts char # Output: 酤
Rust:
let c = '\u{9164}';
println!("{}", c); // Output: 酤
Go:
char := '\u9164'
fmt.Printf("%c\n", char) // Output: 酤
CSS:
/* CSS content property */
.element::before {
content: "\009164"; /* 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%A4
MD5:
d0e7f73b186ffdeae95313d08733435d
SHA1:
570d4f572d01a0f2f08c8d77096b003da4d78f8c
Base64:
6YWk