C:
char c = '\u7794';
printf("%c\n", c); // Output: 瞔
JavaScript:
const char = '\u7794';
console.log(char); // Output: 瞔
Java:
char c = '\u7794';
System.out.println(c); // Output: 瞔
JSON:
{"text": "\u7794"} // Value: 瞔
Python:
char = '\u7794'
print(char) # Output: 瞔
Perl:
my $char = "\x{7794}";
print $char; # Output: 瞔
PHP:
$char = "\x{7794}";
echo $char; // Output: 瞔
Ruby:
char = "\u{7794}"
puts char # Output: 瞔
Rust:
let c = '\u{7794}';
println!("{}", c); // Output: 瞔
Go:
char := '\u7794'
fmt.Printf("%c\n", char) // Output: 瞔
CSS:
/* CSS content property */
.element::before {
content: "\007794"; /* 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%94
MD5:
5725634f37f1ba8d3ab206f3d8396890
SHA1:
0f03ffb894fac47419e2949a77b62b6d46e305e5
Base64:
556U