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