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