C:
char c = '\u5558';
printf("%c\n", c); // Output: 啘
JavaScript:
const char = '\u5558';
console.log(char); // Output: 啘
Java:
char c = '\u5558';
System.out.println(c); // Output: 啘
JSON:
{"text": "\u5558"} // Value: 啘
Python:
char = '\u5558'
print(char) # Output: 啘
Perl:
my $char = "\x{5558}";
print $char; # Output: 啘
PHP:
$char = "\x{5558}";
echo $char; // Output: 啘
Ruby:
char = "\u{5558}"
puts char # Output: 啘
Rust:
let c = '\u{5558}';
println!("{}", c); // Output: 啘
Go:
char := '\u5558'
fmt.Printf("%c\n", char) // Output: 啘
CSS:
/* CSS content property */
.element::before {
content: "\005558"; /* 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%98
MD5:
37ee9c414224ded7dc8d8eab3eff60cd
SHA1:
6fed95706c67519aa6e365e9cb5428a0e4015b9e
Base64:
5ZWY