C:
char c = '\u7743';
printf("%c\n", c); // Output: 睃
JavaScript:
const char = '\u7743';
console.log(char); // Output: 睃
Java:
char c = '\u7743';
System.out.println(c); // Output: 睃
JSON:
{"text": "\u7743"} // Value: 睃
Python:
char = '\u7743'
print(char) # Output: 睃
Perl:
my $char = "\x{7743}";
print $char; # Output: 睃
PHP:
$char = "\x{7743}";
echo $char; // Output: 睃
Ruby:
char = "\u{7743}"
puts char # Output: 睃
Rust:
let c = '\u{7743}';
println!("{}", c); // Output: 睃
Go:
char := '\u7743'
fmt.Printf("%c\n", char) // Output: 睃
CSS:
/* CSS content property */
.element::before {
content: "\007743"; /* 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%83
MD5:
0c25c69296881aca030b5ee4cc3d8300
SHA1:
03f82385eb5664fcf19fb179ba7dbad85ebd7cb8
Base64:
552D