C:
char c = '\u5561';
printf("%c\n", c); // Output: 啡
JavaScript:
const char = '\u5561';
console.log(char); // Output: 啡
Java:
char c = '\u5561';
System.out.println(c); // Output: 啡
JSON:
{"text": "\u5561"} // Value: 啡
Python:
char = '\u5561'
print(char) # Output: 啡
Perl:
my $char = "\x{5561}";
print $char; # Output: 啡
PHP:
$char = "\x{5561}";
echo $char; // Output: 啡
Ruby:
char = "\u{5561}"
puts char # Output: 啡
Rust:
let c = '\u{5561}';
println!("{}", c); // Output: 啡
Go:
char := '\u5561'
fmt.Printf("%c\n", char) // Output: 啡
CSS:
/* CSS content property */
.element::before {
content: "\005561"; /* 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%A1
MD5:
bc0e99b6a988a6e32d7c74cb60328627
SHA1:
4b15cfa5dfd6353848b41d8e3ab51bb027d15fcf
Base64:
5ZWh