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