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