C:
char c = '\u7766';
printf("%c\n", c); // Output: 睦
JavaScript:
const char = '\u7766';
console.log(char); // Output: 睦
Java:
char c = '\u7766';
System.out.println(c); // Output: 睦
JSON:
{"text": "\u7766"} // Value: 睦
Python:
char = '\u7766'
print(char) # Output: 睦
Perl:
my $char = "\x{7766}";
print $char; # Output: 睦
PHP:
$char = "\x{7766}";
echo $char; // Output: 睦
Ruby:
char = "\u{7766}"
puts char # Output: 睦
Rust:
let c = '\u{7766}';
println!("{}", c); // Output: 睦
Go:
char := '\u7766'
fmt.Printf("%c\n", char) // Output: 睦
CSS:
/* CSS content property */
.element::before {
content: "\007766"; /* 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%A6
MD5:
b5ffbfe7ae05bd2d8f37734f5edfe7a1
SHA1:
5ef0141b223ef9ef49f1dc5489102e20dccef2c8
Base64:
552m