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