C:
char c = '\u59D9';
printf("%c\n", c); // Output: 姙
JavaScript:
const char = '\u59D9';
console.log(char); // Output: 姙
Java:
char c = '\u59D9';
System.out.println(c); // Output: 姙
JSON:
{"text": "\u59D9"} // Value: 姙
Python:
char = '\u59D9'
print(char) # Output: 姙
Perl:
my $char = "\x{59D9}";
print $char; # Output: 姙
PHP:
$char = "\x{59D9}";
echo $char; // Output: 姙
Ruby:
char = "\u{59D9}"
puts char # Output: 姙
Rust:
let c = '\u{59D9}';
println!("{}", c); // Output: 姙
Go:
char := '\u59D9'
fmt.Printf("%c\n", char) // Output: 姙
CSS:
/* CSS content property */
.element::before {
content: "\0059D9"; /* 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%99
MD5:
9aa8b38392fe9158931d2a65f399b6ea
SHA1:
95c70885f970847e7f6dbddab6e9ad375546efc7
Base64:
5aeZ