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