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