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