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