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