C:
char c = '\u5641';
printf("%c\n", c); // Output: 噁
JavaScript:
const char = '\u5641';
console.log(char); // Output: 噁
Java:
char c = '\u5641';
System.out.println(c); // Output: 噁
JSON:
{"text": "\u5641"} // Value: 噁
Python:
char = '\u5641'
print(char) # Output: 噁
Perl:
my $char = "\x{5641}";
print $char; # Output: 噁
PHP:
$char = "\x{5641}";
echo $char; // Output: 噁
Ruby:
char = "\u{5641}"
puts char # Output: 噁
Rust:
let c = '\u{5641}';
println!("{}", c); // Output: 噁
Go:
char := '\u5641'
fmt.Printf("%c\n", char) // Output: 噁
CSS:
/* CSS content property */
.element::before {
content: "\005641"; /* 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%81
MD5:
58c3a5e280c1307378d47e08e2763e71
SHA1:
17d26a4b595334b8a2989e0a479b2bc470ebc3af
Base64:
5ZmB