C:
char c = '\u7798';
printf("%c\n", c); // Output: 瞘
JavaScript:
const char = '\u7798';
console.log(char); // Output: 瞘
Java:
char c = '\u7798';
System.out.println(c); // Output: 瞘
JSON:
{"text": "\u7798"} // Value: 瞘
Python:
char = '\u7798'
print(char) # Output: 瞘
Perl:
my $char = "\x{7798}";
print $char; # Output: 瞘
PHP:
$char = "\x{7798}";
echo $char; // Output: 瞘
Ruby:
char = "\u{7798}"
puts char # Output: 瞘
Rust:
let c = '\u{7798}';
println!("{}", c); // Output: 瞘
Go:
char := '\u7798'
fmt.Printf("%c\n", char) // Output: 瞘
CSS:
/* CSS content property */
.element::before {
content: "\007798"; /* 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%98
MD5:
c7c2e3771ec5c0fb1b99a6be3e0d7311
SHA1:
6db86ab9176ba57303788eacfcd23b896d3690dc
Base64:
556Y