C:
char c = '\u7768';
printf("%c\n", c); // Output: 睨
JavaScript:
const char = '\u7768';
console.log(char); // Output: 睨
Java:
char c = '\u7768';
System.out.println(c); // Output: 睨
JSON:
{"text": "\u7768"} // Value: 睨
Python:
char = '\u7768'
print(char) # Output: 睨
Perl:
my $char = "\x{7768}";
print $char; # Output: 睨
PHP:
$char = "\x{7768}";
echo $char; // Output: 睨
Ruby:
char = "\u{7768}"
puts char # Output: 睨
Rust:
let c = '\u{7768}';
println!("{}", c); // Output: 睨
Go:
char := '\u7768'
fmt.Printf("%c\n", char) // Output: 睨
CSS:
/* CSS content property */
.element::before {
content: "\007768"; /* 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%A8
MD5:
d5a86c0e882355a231d440d6389f878e
SHA1:
9f2aeaafc4a027174ee6d14271614f0e908607c6
Base64:
552o