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