C:
char c = '\u7AA6';
printf("%c\n", c); // Output: 窦
JavaScript:
const char = '\u7AA6';
console.log(char); // Output: 窦
Java:
char c = '\u7AA6';
System.out.println(c); // Output: 窦
JSON:
{"text": "\u7AA6"} // Value: 窦
Python:
char = '\u7AA6'
print(char) # Output: 窦
Perl:
my $char = "\x{7AA6}";
print $char; # Output: 窦
PHP:
$char = "\x{7AA6}";
echo $char; // Output: 窦
Ruby:
char = "\u{7AA6}"
puts char # Output: 窦
Rust:
let c = '\u{7AA6}';
println!("{}", c); // Output: 窦
Go:
char := '\u7AA6'
fmt.Printf("%c\n", char) // Output: 窦
CSS:
/* CSS content property */
.element::before {
content: "\007AA6"; /* 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%A6
MD5:
577328afcaff43460fc990c2c7b52dba
SHA1:
7a0e20158996ebbdd4399a4842aac376b96ef894
Base64:
56qm