C:
char c = '\u5666';
printf("%c\n", c); // Output: 噦
JavaScript:
const char = '\u5666';
console.log(char); // Output: 噦
Java:
char c = '\u5666';
System.out.println(c); // Output: 噦
JSON:
{"text": "\u5666"} // Value: 噦
Python:
char = '\u5666'
print(char) # Output: 噦
Perl:
my $char = "\x{5666}";
print $char; # Output: 噦
PHP:
$char = "\x{5666}";
echo $char; // Output: 噦
Ruby:
char = "\u{5666}"
puts char # Output: 噦
Rust:
let c = '\u{5666}';
println!("{}", c); // Output: 噦
Go:
char := '\u5666'
fmt.Printf("%c\n", char) // Output: 噦
CSS:
/* CSS content property */
.element::before {
content: "\005666"; /* 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%A6
MD5:
d8f6dacdde99746e1e91004e4b7621dd
SHA1:
984dac832bf317cc74a451ea1a81ed07f5e41f46
Base64:
5Zmm