C:
char c = '\u5A4C';
printf("%c\n", c); // Output: 婌
JavaScript:
const char = '\u5A4C';
console.log(char); // Output: 婌
Java:
char c = '\u5A4C';
System.out.println(c); // Output: 婌
JSON:
{"text": "\u5A4C"} // Value: 婌
Python:
char = '\u5A4C'
print(char) # Output: 婌
Perl:
my $char = "\x{5A4C}";
print $char; # Output: 婌
PHP:
$char = "\x{5A4C}";
echo $char; // Output: 婌
Ruby:
char = "\u{5A4C}"
puts char # Output: 婌
Rust:
let c = '\u{5A4C}';
println!("{}", c); // Output: 婌
Go:
char := '\u5A4C'
fmt.Printf("%c\n", char) // Output: 婌
CSS:
/* CSS content property */
.element::before {
content: "\005A4C"; /* 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=%E5%A9%8C
MD5:
f0a8453d6629aca5e3d225da430469f6
SHA1:
3532af3a761a991eafacaae2cae2eec55bfe6a79
Base64:
5amM