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