C:
char c = '\u7787';
printf("%c\n", c); // Output: 瞇
JavaScript:
const char = '\u7787';
console.log(char); // Output: 瞇
Java:
char c = '\u7787';
System.out.println(c); // Output: 瞇
JSON:
{"text": "\u7787"} // Value: 瞇
Python:
char = '\u7787'
print(char) # Output: 瞇
Perl:
my $char = "\x{7787}";
print $char; # Output: 瞇
PHP:
$char = "\x{7787}";
echo $char; // Output: 瞇
Ruby:
char = "\u{7787}"
puts char # Output: 瞇
Rust:
let c = '\u{7787}';
println!("{}", c); // Output: 瞇
Go:
char := '\u7787'
fmt.Printf("%c\n", char) // Output: 瞇
CSS:
/* CSS content property */
.element::before {
content: "\007787"; /* 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%87
MD5:
2aa5f6d9b5153b94fdef3344043a1870
SHA1:
17659bf308501a1f36c87c4c2847393bd744601b
Base64:
556H