C:
char c = '\u7753';
printf("%c\n", c); // Output: 睓
JavaScript:
const char = '\u7753';
console.log(char); // Output: 睓
Java:
char c = '\u7753';
System.out.println(c); // Output: 睓
JSON:
{"text": "\u7753"} // Value: 睓
Python:
char = '\u7753'
print(char) # Output: 睓
Perl:
my $char = "\x{7753}";
print $char; # Output: 睓
PHP:
$char = "\x{7753}";
echo $char; // Output: 睓
Ruby:
char = "\u{7753}"
puts char # Output: 睓
Rust:
let c = '\u{7753}';
println!("{}", c); // Output: 睓
Go:
char := '\u7753'
fmt.Printf("%c\n", char) // Output: 睓
CSS:
/* CSS content property */
.element::before {
content: "\007753"; /* 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%93
MD5:
ffd587cd80958df42fdde7aec8aaf0fe
SHA1:
e4162de1362692273da86fcbc1b12effa2761e2b
Base64:
552T