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