C:
char c = '\u7732';
printf("%c\n", c); // Output: 眲
JavaScript:
const char = '\u7732';
console.log(char); // Output: 眲
Java:
char c = '\u7732';
System.out.println(c); // Output: 眲
JSON:
{"text": "\u7732"} // Value: 眲
Python:
char = '\u7732'
print(char) # Output: 眲
Perl:
my $char = "\x{7732}";
print $char; # Output: 眲
PHP:
$char = "\x{7732}";
echo $char; // Output: 眲
Ruby:
char = "\u{7732}"
puts char # Output: 眲
Rust:
let c = '\u{7732}';
println!("{}", c); // Output: 眲
Go:
char := '\u7732'
fmt.Printf("%c\n", char) // Output: 眲
CSS:
/* CSS content property */
.element::before {
content: "\007732"; /* 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%B2
MD5:
2090a38386951ef096756482a2f66ed3
SHA1:
7f8b114f8aad405ef63871d88b2b50a44c3afc11
Base64:
55yy