C:
char c = '\u5A98';
printf("%c\n", c); // Output: 媘
JavaScript:
const char = '\u5A98';
console.log(char); // Output: 媘
Java:
char c = '\u5A98';
System.out.println(c); // Output: 媘
JSON:
{"text": "\u5A98"} // Value: 媘
Python:
char = '\u5A98'
print(char) # Output: 媘
Perl:
my $char = "\x{5A98}";
print $char; # Output: 媘
PHP:
$char = "\x{5A98}";
echo $char; // Output: 媘
Ruby:
char = "\u{5A98}"
puts char # Output: 媘
Rust:
let c = '\u{5A98}';
println!("{}", c); // Output: 媘
Go:
char := '\u5A98'
fmt.Printf("%c\n", char) // Output: 媘
CSS:
/* CSS content property */
.element::before {
content: "\005A98"; /* 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%AA%98
MD5:
8987957b733f6b3d2509db678f4ce7bf
SHA1:
4db4236adfb4bd6432bd6953fffb57c911d312d2
Base64:
5aqY