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