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