C:
char c = '\u5559';
printf("%c\n", c); // Output: 啙
JavaScript:
const char = '\u5559';
console.log(char); // Output: 啙
Java:
char c = '\u5559';
System.out.println(c); // Output: 啙
JSON:
{"text": "\u5559"} // Value: 啙
Python:
char = '\u5559'
print(char) # Output: 啙
Perl:
my $char = "\x{5559}";
print $char; # Output: 啙
PHP:
$char = "\x{5559}";
echo $char; // Output: 啙
Ruby:
char = "\u{5559}"
puts char # Output: 啙
Rust:
let c = '\u{5559}';
println!("{}", c); // Output: 啙
Go:
char := '\u5559'
fmt.Printf("%c\n", char) // Output: 啙
CSS:
/* CSS content property */
.element::before {
content: "\005559"; /* 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%95%99
MD5:
4b6549d89b0afca453bdeef7c8cb69ab
SHA1:
0cd355ccf90d0878cfbbb2be16c50b3de313ae90
Base64:
5ZWZ