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