C:
char c = '\u7788';
printf("%c\n", c); // Output: 瞈
JavaScript:
const char = '\u7788';
console.log(char); // Output: 瞈
Java:
char c = '\u7788';
System.out.println(c); // Output: 瞈
JSON:
{"text": "\u7788"} // Value: 瞈
Python:
char = '\u7788'
print(char) # Output: 瞈
Perl:
my $char = "\x{7788}";
print $char; # Output: 瞈
PHP:
$char = "\x{7788}";
echo $char; // Output: 瞈
Ruby:
char = "\u{7788}"
puts char # Output: 瞈
Rust:
let c = '\u{7788}';
println!("{}", c); // Output: 瞈
Go:
char := '\u7788'
fmt.Printf("%c\n", char) // Output: 瞈
CSS:
/* CSS content property */
.element::before {
content: "\007788"; /* 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%88
MD5:
db7f89839d7174149c8e94acdb97aefd
SHA1:
0379e70ccc8a18a1073202d37d714016cb9899f2
Base64:
556I