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