C:
char c = '\u7A96';
printf("%c\n", c); // Output: 窖
JavaScript:
const char = '\u7A96';
console.log(char); // Output: 窖
Java:
char c = '\u7A96';
System.out.println(c); // Output: 窖
JSON:
{"text": "\u7A96"} // Value: 窖
Python:
char = '\u7A96'
print(char) # Output: 窖
Perl:
my $char = "\x{7A96}";
print $char; # Output: 窖
PHP:
$char = "\x{7A96}";
echo $char; // Output: 窖
Ruby:
char = "\u{7A96}"
puts char # Output: 窖
Rust:
let c = '\u{7A96}';
println!("{}", c); // Output: 窖
Go:
char := '\u7A96'
fmt.Printf("%c\n", char) // Output: 窖
CSS:
/* CSS content property */
.element::before {
content: "\007A96"; /* 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=%E7%AA%96
MD5:
79032f84a5c4ffcf4ed08ee5b46725e6
SHA1:
a269fe1891a2ad0ae9587069aae14c8d3ec937c2
Base64:
56qW