C:
char c = '\u7733';
printf("%c\n", c); // Output: 眳
JavaScript:
const char = '\u7733';
console.log(char); // Output: 眳
Java:
char c = '\u7733';
System.out.println(c); // Output: 眳
JSON:
{"text": "\u7733"} // Value: 眳
Python:
char = '\u7733'
print(char) # Output: 眳
Perl:
my $char = "\x{7733}";
print $char; # Output: 眳
PHP:
$char = "\x{7733}";
echo $char; // Output: 眳
Ruby:
char = "\u{7733}"
puts char # Output: 眳
Rust:
let c = '\u{7733}';
println!("{}", c); // Output: 眳
Go:
char := '\u7733'
fmt.Printf("%c\n", char) // Output: 眳
CSS:
/* CSS content property */
.element::before {
content: "\007733"; /* 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%B3
MD5:
22c442e30b3932dd77cd292efb06a0e9
SHA1:
b6dfc9ef8fb27ea8affd37da73b6279c4711255a
Base64:
55yz