C:
char c = '\u566A';
printf("%c\n", c); // Output: 噪
JavaScript:
const char = '\u566A';
console.log(char); // Output: 噪
Java:
char c = '\u566A';
System.out.println(c); // Output: 噪
JSON:
{"text": "\u566A"} // Value: 噪
Python:
char = '\u566A'
print(char) # Output: 噪
Perl:
my $char = "\x{566A}";
print $char; # Output: 噪
PHP:
$char = "\x{566A}";
echo $char; // Output: 噪
Ruby:
char = "\u{566A}"
puts char # Output: 噪
Rust:
let c = '\u{566A}';
println!("{}", c); // Output: 噪
Go:
char := '\u566A'
fmt.Printf("%c\n", char) // Output: 噪
CSS:
/* CSS content property */
.element::before {
content: "\00566A"; /* 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%AA
MD5:
f3c1f265199461ff6b97665718c183ab
SHA1:
a63285e25a105f7eac211e76c2844beda6ee24be
Base64:
5Zmq