C:
char c = '\u7797';
printf("%c\n", c); // Output: 瞗
JavaScript:
const char = '\u7797';
console.log(char); // Output: 瞗
Java:
char c = '\u7797';
System.out.println(c); // Output: 瞗
JSON:
{"text": "\u7797"} // Value: 瞗
Python:
char = '\u7797'
print(char) # Output: 瞗
Perl:
my $char = "\x{7797}";
print $char; # Output: 瞗
PHP:
$char = "\x{7797}";
echo $char; // Output: 瞗
Ruby:
char = "\u{7797}"
puts char # Output: 瞗
Rust:
let c = '\u{7797}';
println!("{}", c); // Output: 瞗
Go:
char := '\u7797'
fmt.Printf("%c\n", char) // Output: 瞗
CSS:
/* CSS content property */
.element::before {
content: "\007797"; /* 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%9E%97
MD5:
f3c98673ce5a6fddc9ee43137d9f2c37
SHA1:
96fe999e75cb46384624d1eea3b9a9071807618f
Base64:
556X