C:
char c = '\u7761';
printf("%c\n", c); // Output: 睡
JavaScript:
const char = '\u7761';
console.log(char); // Output: 睡
Java:
char c = '\u7761';
System.out.println(c); // Output: 睡
JSON:
{"text": "\u7761"} // Value: 睡
Python:
char = '\u7761'
print(char) # Output: 睡
Perl:
my $char = "\x{7761}";
print $char; # Output: 睡
PHP:
$char = "\x{7761}";
echo $char; // Output: 睡
Ruby:
char = "\u{7761}"
puts char # Output: 睡
Rust:
let c = '\u{7761}';
println!("{}", c); // Output: 睡
Go:
char := '\u7761'
fmt.Printf("%c\n", char) // Output: 睡
CSS:
/* CSS content property */
.element::before {
content: "\007761"; /* 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%A1
MD5:
0e7c928c54970c3b4896820aeeeb831a
SHA1:
c14905ca86dfba0e4ed0d704fb9dac00e75b027c
Base64:
552h