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