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