C:
char c = '\u7751';
printf("%c\n", c); // Output: 睑
JavaScript:
const char = '\u7751';
console.log(char); // Output: 睑
Java:
char c = '\u7751';
System.out.println(c); // Output: 睑
JSON:
{"text": "\u7751"} // Value: 睑
Python:
char = '\u7751'
print(char) # Output: 睑
Perl:
my $char = "\x{7751}";
print $char; # Output: 睑
PHP:
$char = "\x{7751}";
echo $char; // Output: 睑
Ruby:
char = "\u{7751}"
puts char # Output: 睑
Rust:
let c = '\u{7751}';
println!("{}", c); // Output: 睑
Go:
char := '\u7751'
fmt.Printf("%c\n", char) // Output: 睑
CSS:
/* CSS content property */
.element::before {
content: "\007751"; /* 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%9D%91
MD5:
1d7ac2b3660d8e08856718483efb19d8
SHA1:
dafcc9439b5cae61690a227a7b666b9a63488c3d
Base64:
552R