C:
char c = '\u5557';
printf("%c\n", c); // Output: 啗
JavaScript:
const char = '\u5557';
console.log(char); // Output: 啗
Java:
char c = '\u5557';
System.out.println(c); // Output: 啗
JSON:
{"text": "\u5557"} // Value: 啗
Python:
char = '\u5557'
print(char) # Output: 啗
Perl:
my $char = "\x{5557}";
print $char; # Output: 啗
PHP:
$char = "\x{5557}";
echo $char; // Output: 啗
Ruby:
char = "\u{5557}"
puts char # Output: 啗
Rust:
let c = '\u{5557}';
println!("{}", c); // Output: 啗
Go:
char := '\u5557'
fmt.Printf("%c\n", char) // Output: 啗
CSS:
/* CSS content property */
.element::before {
content: "\005557"; /* 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%97
MD5:
4481e9b327922b84f82011668933a735
SHA1:
f6d45067a625960ec970b7877895817a831e25ba
Base64:
5ZWX