C:
char c = '\u5659';
printf("%c\n", c); // Output: 噙
JavaScript:
const char = '\u5659';
console.log(char); // Output: 噙
Java:
char c = '\u5659';
System.out.println(c); // Output: 噙
JSON:
{"text": "\u5659"} // Value: 噙
Python:
char = '\u5659'
print(char) # Output: 噙
Perl:
my $char = "\x{5659}";
print $char; # Output: 噙
PHP:
$char = "\x{5659}";
echo $char; // Output: 噙
Ruby:
char = "\u{5659}"
puts char # Output: 噙
Rust:
let c = '\u{5659}';
println!("{}", c); // Output: 噙
Go:
char := '\u5659'
fmt.Printf("%c\n", char) // Output: 噙
CSS:
/* CSS content property */
.element::before {
content: "\005659"; /* 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%99%99
MD5:
2f1487ad5e7be05275029eb1ce822876
SHA1:
879a6f47072ba5888be901b0183f2ada26474b79
Base64:
5ZmZ