C:
char c = '\u7696';
printf("%c\n", c); // Output: 皖
JavaScript:
const char = '\u7696';
console.log(char); // Output: 皖
Java:
char c = '\u7696';
System.out.println(c); // Output: 皖
JSON:
{"text": "\u7696"} // Value: 皖
Python:
char = '\u7696'
print(char) # Output: 皖
Perl:
my $char = "\x{7696}";
print $char; # Output: 皖
PHP:
$char = "\x{7696}";
echo $char; // Output: 皖
Ruby:
char = "\u{7696}"
puts char # Output: 皖
Rust:
let c = '\u{7696}';
println!("{}", c); // Output: 皖
Go:
char := '\u7696'
fmt.Printf("%c\n", char) // Output: 皖
CSS:
/* CSS content property */
.element::before {
content: "\007696"; /* 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%9A%96
MD5:
7cf42613754f15760385a70352f6ee6d
SHA1:
b00e83215cae4d8d1f40d7b04438146149c08148
Base64:
55qW