C:
char c = '\u7786';
printf("%c\n", c); // Output: 瞆
JavaScript:
const char = '\u7786';
console.log(char); // Output: 瞆
Java:
char c = '\u7786';
System.out.println(c); // Output: 瞆
JSON:
{"text": "\u7786"} // Value: 瞆
Python:
char = '\u7786'
print(char) # Output: 瞆
Perl:
my $char = "\x{7786}";
print $char; # Output: 瞆
PHP:
$char = "\x{7786}";
echo $char; // Output: 瞆
Ruby:
char = "\u{7786}"
puts char # Output: 瞆
Rust:
let c = '\u{7786}';
println!("{}", c); // Output: 瞆
Go:
char := '\u7786'
fmt.Printf("%c\n", char) // Output: 瞆
CSS:
/* CSS content property */
.element::before {
content: "\007786"; /* 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%86
MD5:
7b429ca9af674e858a5a6aa1d8b164e1
SHA1:
a1ae00dcafd85441ec2ce9a10076c4427bb926c9
Base64:
556G