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