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