C:
char c = '\u9158';
printf("%c\n", c); // Output: 酘
JavaScript:
const char = '\u9158';
console.log(char); // Output: 酘
Java:
char c = '\u9158';
System.out.println(c); // Output: 酘
JSON:
{"text": "\u9158"} // Value: 酘
Python:
char = '\u9158'
print(char) # Output: 酘
Perl:
my $char = "\x{9158}";
print $char; # Output: 酘
PHP:
$char = "\x{9158}";
echo $char; // Output: 酘
Ruby:
char = "\u{9158}"
puts char # Output: 酘
Rust:
let c = '\u{9158}';
println!("{}", c); // Output: 酘
Go:
char := '\u9158'
fmt.Printf("%c\n", char) // Output: 酘
CSS:
/* CSS content property */
.element::before {
content: "\009158"; /* 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%98
MD5:
0b277f711b4f957bdfebc9d705ea691b
SHA1:
2e97f2c2498a90c3a8063a9298b423188fdd1673
Base64:
6YWY