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