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