C:
char c = '\u7799';
printf("%c\n", c); // Output: 瞙
JavaScript:
const char = '\u7799';
console.log(char); // Output: 瞙
Java:
char c = '\u7799';
System.out.println(c); // Output: 瞙
JSON:
{"text": "\u7799"} // Value: 瞙
Python:
char = '\u7799'
print(char) # Output: 瞙
Perl:
my $char = "\x{7799}";
print $char; # Output: 瞙
PHP:
$char = "\x{7799}";
echo $char; // Output: 瞙
Ruby:
char = "\u{7799}"
puts char # Output: 瞙
Rust:
let c = '\u{7799}';
println!("{}", c); // Output: 瞙
Go:
char := '\u7799'
fmt.Printf("%c\n", char) // Output: 瞙
CSS:
/* CSS content property */
.element::before {
content: "\007799"; /* 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%99
MD5:
5616e07beefb7b2b9caaff8cfd58bfbe
SHA1:
3b4743fc43713f567dd75d07a539d61a723509d3
Base64:
556Z