C:
char c = '\u9167';
printf("%c\n", c); // Output: 酧
JavaScript:
const char = '\u9167';
console.log(char); // Output: 酧
Java:
char c = '\u9167';
System.out.println(c); // Output: 酧
JSON:
{"text": "\u9167"} // Value: 酧
Python:
char = '\u9167'
print(char) # Output: 酧
Perl:
my $char = "\x{9167}";
print $char; # Output: 酧
PHP:
$char = "\x{9167}";
echo $char; // Output: 酧
Ruby:
char = "\u{9167}"
puts char # Output: 酧
Rust:
let c = '\u{9167}';
println!("{}", c); // Output: 酧
Go:
char := '\u9167'
fmt.Printf("%c\n", char) // Output: 酧
CSS:
/* CSS content property */
.element::before {
content: "\009167"; /* 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%A7
MD5:
6081d96c69359c8945a22a670144db27
SHA1:
db9474f26f4cee9186687d2b27252e80d0c32f7f
Base64:
6YWn