C:
char c = '\u7718';
printf("%c\n", c); // Output: 眘
JavaScript:
const char = '\u7718';
console.log(char); // Output: 眘
Java:
char c = '\u7718';
System.out.println(c); // Output: 眘
JSON:
{"text": "\u7718"} // Value: 眘
Python:
char = '\u7718'
print(char) # Output: 眘
Perl:
my $char = "\x{7718}";
print $char; # Output: 眘
PHP:
$char = "\x{7718}";
echo $char; // Output: 眘
Ruby:
char = "\u{7718}"
puts char # Output: 眘
Rust:
let c = '\u{7718}';
println!("{}", c); // Output: 眘
Go:
char := '\u7718'
fmt.Printf("%c\n", char) // Output: 眘
CSS:
/* CSS content property */
.element::before {
content: "\007718"; /* 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%98
MD5:
d5ffae1824e0ce086bfa790d8b10b31a
SHA1:
54ba069dedb2d36c8eeff0ebea0ab74cf56756df
Base64:
55yY