C:
char c = '\u5664';
printf("%c\n", c); // Output: 噤
JavaScript:
const char = '\u5664';
console.log(char); // Output: 噤
Java:
char c = '\u5664';
System.out.println(c); // Output: 噤
JSON:
{"text": "\u5664"} // Value: 噤
Python:
char = '\u5664'
print(char) # Output: 噤
Perl:
my $char = "\x{5664}";
print $char; # Output: 噤
PHP:
$char = "\x{5664}";
echo $char; // Output: 噤
Ruby:
char = "\u{5664}"
puts char # Output: 噤
Rust:
let c = '\u{5664}';
println!("{}", c); // Output: 噤
Go:
char := '\u5664'
fmt.Printf("%c\n", char) // Output: 噤
CSS:
/* CSS content property */
.element::before {
content: "\005664"; /* 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%A4
MD5:
f47a0ec91a338b7cb790c20a52924513
SHA1:
b38fd7d3131524a53ac1e4f8d2253e831fa7cf42
Base64:
5Zmk