C:
char c = '\u5556';
printf("%c\n", c); // Output: 啖
JavaScript:
const char = '\u5556';
console.log(char); // Output: 啖
Java:
char c = '\u5556';
System.out.println(c); // Output: 啖
JSON:
{"text": "\u5556"} // Value: 啖
Python:
char = '\u5556'
print(char) # Output: 啖
Perl:
my $char = "\x{5556}";
print $char; # Output: 啖
PHP:
$char = "\x{5556}";
echo $char; // Output: 啖
Ruby:
char = "\u{5556}"
puts char # Output: 啖
Rust:
let c = '\u{5556}';
println!("{}", c); // Output: 啖
Go:
char := '\u5556'
fmt.Printf("%c\n", char) // Output: 啖
CSS:
/* CSS content property */
.element::before {
content: "\005556"; /* 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%96
MD5:
72c98a502511295fb53c9908c5301644
SHA1:
7009dc14c2504055e99a5d6d0af632dfa38f5ae6
Base64:
5ZWW