C:
char c = '\u7760';
printf("%c\n", c); // Output: 睠
JavaScript:
const char = '\u7760';
console.log(char); // Output: 睠
Java:
char c = '\u7760';
System.out.println(c); // Output: 睠
JSON:
{"text": "\u7760"} // Value: 睠
Python:
char = '\u7760'
print(char) # Output: 睠
Perl:
my $char = "\x{7760}";
print $char; # Output: 睠
PHP:
$char = "\x{7760}";
echo $char; // Output: 睠
Ruby:
char = "\u{7760}"
puts char # Output: 睠
Rust:
let c = '\u{7760}';
println!("{}", c); // Output: 睠
Go:
char := '\u7760'
fmt.Printf("%c\n", char) // Output: 睠
CSS:
/* CSS content property */
.element::before {
content: "\007760"; /* 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%A0
MD5:
3d4ee0dfc9cd1cd2c198209b41997c7d
SHA1:
96b117c16ab7d7bd246aa5044429dca84297e3bc
Base64:
552g