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