C:
char c = '\u7789';
printf("%c\n", c); // Output: 瞉
JavaScript:
const char = '\u7789';
console.log(char); // Output: 瞉
Java:
char c = '\u7789';
System.out.println(c); // Output: 瞉
JSON:
{"text": "\u7789"} // Value: 瞉
Python:
char = '\u7789'
print(char) # Output: 瞉
Perl:
my $char = "\x{7789}";
print $char; # Output: 瞉
PHP:
$char = "\x{7789}";
echo $char; // Output: 瞉
Ruby:
char = "\u{7789}"
puts char # Output: 瞉
Rust:
let c = '\u{7789}';
println!("{}", c); // Output: 瞉
Go:
char := '\u7789'
fmt.Printf("%c\n", char) // Output: 瞉
CSS:
/* CSS content property */
.element::before {
content: "\007789"; /* 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%89
MD5:
5550ecf8486fd28bb730c28d82796a0b
SHA1:
d3dbb27b035c79115dc6dc926e0a4f6e2faaaac8
Base64:
556J