C:
char c = '\u7716';
printf("%c\n", c); // Output: 眖
JavaScript:
const char = '\u7716';
console.log(char); // Output: 眖
Java:
char c = '\u7716';
System.out.println(c); // Output: 眖
JSON:
{"text": "\u7716"} // Value: 眖
Python:
char = '\u7716'
print(char) # Output: 眖
Perl:
my $char = "\x{7716}";
print $char; # Output: 眖
PHP:
$char = "\x{7716}";
echo $char; // Output: 眖
Ruby:
char = "\u{7716}"
puts char # Output: 眖
Rust:
let c = '\u{7716}';
println!("{}", c); // Output: 眖
Go:
char := '\u7716'
fmt.Printf("%c\n", char) // Output: 眖
CSS:
/* CSS content property */
.element::before {
content: "\007716"; /* 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%9C%96
MD5:
f4085c693c0b8e0486d18d4148349f7d
SHA1:
4ff84754b3be8ac29428449c545b9c3c91d1f29d
Base64:
55yW