C:
char c = '\u5544';
printf("%c\n", c); // Output: 啄
JavaScript:
const char = '\u5544';
console.log(char); // Output: 啄
Java:
char c = '\u5544';
System.out.println(c); // Output: 啄
JSON:
{"text": "\u5544"} // Value: 啄
Python:
char = '\u5544'
print(char) # Output: 啄
Perl:
my $char = "\x{5544}";
print $char; # Output: 啄
PHP:
$char = "\x{5544}";
echo $char; // Output: 啄
Ruby:
char = "\u{5544}"
puts char # Output: 啄
Rust:
let c = '\u{5544}';
println!("{}", c); // Output: 啄
Go:
char := '\u5544'
fmt.Printf("%c\n", char) // Output: 啄
CSS:
/* CSS content property */
.element::before {
content: "\005544"; /* 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%84
MD5:
8e291494ffd89866a011d8a0b8488b38
SHA1:
b25fa9ac2520f379305a04748001738044711682
Base64:
5ZWE