C:
char c = '\u5554';
printf("%c\n", c); // Output: 啔
JavaScript:
const char = '\u5554';
console.log(char); // Output: 啔
Java:
char c = '\u5554';
System.out.println(c); // Output: 啔
JSON:
{"text": "\u5554"} // Value: 啔
Python:
char = '\u5554'
print(char) # Output: 啔
Perl:
my $char = "\x{5554}";
print $char; # Output: 啔
PHP:
$char = "\x{5554}";
echo $char; // Output: 啔
Ruby:
char = "\u{5554}"
puts char # Output: 啔
Rust:
let c = '\u{5554}';
println!("{}", c); // Output: 啔
Go:
char := '\u5554'
fmt.Printf("%c\n", char) // Output: 啔
CSS:
/* CSS content property */
.element::before {
content: "\005554"; /* 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%94
MD5:
3a8017bc31eb8f3383e34d3e7ed3402f
SHA1:
8634abb6aafd685492d150b766e33562ec30ddb6
Base64:
5ZWU