C:
char c = '\u5496';
printf("%c\n", c); // Output: 咖
JavaScript:
const char = '\u5496';
console.log(char); // Output: 咖
Java:
char c = '\u5496';
System.out.println(c); // Output: 咖
JSON:
{"text": "\u5496"} // Value: 咖
Python:
char = '\u5496'
print(char) # Output: 咖
Perl:
my $char = "\x{5496}";
print $char; # Output: 咖
PHP:
$char = "\x{5496}";
echo $char; // Output: 咖
Ruby:
char = "\u{5496}"
puts char # Output: 咖
Rust:
let c = '\u{5496}';
println!("{}", c); // Output: 咖
Go:
char := '\u5496'
fmt.Printf("%c\n", char) // Output: 咖
CSS:
/* CSS content property */
.element::before {
content: "\005496"; /* 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%92%96
MD5:
cd87e73a42aacdb3a42dc7599b8364fb
SHA1:
3439a0fcc4046809c4e26f15cb38899e58484af0
Base64:
5ZKW