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