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