C:
char c = '\u7744';
printf("%c\n", c); // Output: 睄
JavaScript:
const char = '\u7744';
console.log(char); // Output: 睄
Java:
char c = '\u7744';
System.out.println(c); // Output: 睄
JSON:
{"text": "\u7744"} // Value: 睄
Python:
char = '\u7744'
print(char) # Output: 睄
Perl:
my $char = "\x{7744}";
print $char; # Output: 睄
PHP:
$char = "\x{7744}";
echo $char; // Output: 睄
Ruby:
char = "\u{7744}"
puts char # Output: 睄
Rust:
let c = '\u{7744}';
println!("{}", c); // Output: 睄
Go:
char := '\u7744'
fmt.Printf("%c\n", char) // Output: 睄
CSS:
/* CSS content property */
.element::before {
content: "\007744"; /* 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%84
MD5:
6df4012aea688c9e6eeea1faf2271405
SHA1:
86d675b970fb58adc6f7e5c0b2d41464aee01c59
Base64:
552E