C:
char c = '\u5A5B';
printf("%c\n", c); // Output: 婛
JavaScript:
const char = '\u5A5B';
console.log(char); // Output: 婛
Java:
char c = '\u5A5B';
System.out.println(c); // Output: 婛
JSON:
{"text": "\u5A5B"} // Value: 婛
Python:
char = '\u5A5B'
print(char) # Output: 婛
Perl:
my $char = "\x{5A5B}";
print $char; # Output: 婛
PHP:
$char = "\x{5A5B}";
echo $char; // Output: 婛
Ruby:
char = "\u{5A5B}"
puts char # Output: 婛
Rust:
let c = '\u{5A5B}';
println!("{}", c); // Output: 婛
Go:
char := '\u5A5B'
fmt.Printf("%c\n", char) // Output: 婛
CSS:
/* CSS content property */
.element::before {
content: "\005A5B"; /* 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%9B
MD5:
f0a2a72d8ba9c354a85422ffe1696103
SHA1:
c2c019a0801cdda52f5f31708522dfefb1ac7300
Base64:
5amb