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