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