C:
char c = '\u59E8';
printf("%c\n", c); // Output: 姨
JavaScript:
const char = '\u59E8';
console.log(char); // Output: 姨
Java:
char c = '\u59E8';
System.out.println(c); // Output: 姨
JSON:
{"text": "\u59E8"} // Value: 姨
Python:
char = '\u59E8'
print(char) # Output: 姨
Perl:
my $char = "\x{59E8}";
print $char; # Output: 姨
PHP:
$char = "\x{59E8}";
echo $char; // Output: 姨
Ruby:
char = "\u{59E8}"
puts char # Output: 姨
Rust:
let c = '\u{59E8}';
println!("{}", c); // Output: 姨
Go:
char := '\u59E8'
fmt.Printf("%c\n", char) // Output: 姨
CSS:
/* CSS content property */
.element::before {
content: "\0059E8"; /* 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%A7%A8
MD5:
4d60a507095b0e7345e9c55132650e39
SHA1:
620e3674e5d587a9280feded351112f6ec82cd0f
Base64:
5aeo