C:
char c = '\u7741';
printf("%c\n", c); // Output: 睁
JavaScript:
const char = '\u7741';
console.log(char); // Output: 睁
Java:
char c = '\u7741';
System.out.println(c); // Output: 睁
JSON:
{"text": "\u7741"} // Value: 睁
Python:
char = '\u7741'
print(char) # Output: 睁
Perl:
my $char = "\x{7741}";
print $char; # Output: 睁
PHP:
$char = "\x{7741}";
echo $char; // Output: 睁
Ruby:
char = "\u{7741}"
puts char # Output: 睁
Rust:
let c = '\u{7741}';
println!("{}", c); // Output: 睁
Go:
char := '\u7741'
fmt.Printf("%c\n", char) // Output: 睁
CSS:
/* CSS content property */
.element::before {
content: "\007741"; /* 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%81
MD5:
03268675cec7eb6eeec232a66b3a008f
SHA1:
4b5cb93a3ed1c505e482a97af5c4958b4f5865e1
Base64:
552B