C:
char c = '\u5991';
printf("%c\n", c); // Output: 妑
JavaScript:
const char = '\u5991';
console.log(char); // Output: 妑
Java:
char c = '\u5991';
System.out.println(c); // Output: 妑
JSON:
{"text": "\u5991"} // Value: 妑
Python:
char = '\u5991'
print(char) # Output: 妑
Perl:
my $char = "\x{5991}";
print $char; # Output: 妑
PHP:
$char = "\x{5991}";
echo $char; // Output: 妑
Ruby:
char = "\u{5991}"
puts char # Output: 妑
Rust:
let c = '\u{5991}';
println!("{}", c); // Output: 妑
Go:
char := '\u5991'
fmt.Printf("%c\n", char) // Output: 妑
CSS:
/* CSS content property */
.element::before {
content: "\005991"; /* 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%A6%91
MD5:
d06b2a2139e722ab583677639dab7597
SHA1:
87a84e8583c4a757b68a541a2066ed576bc00244
Base64:
5aaR