C:
char c = '\u7748';
printf("%c\n", c); // Output: 睈
JavaScript:
const char = '\u7748';
console.log(char); // Output: 睈
Java:
char c = '\u7748';
System.out.println(c); // Output: 睈
JSON:
{"text": "\u7748"} // Value: 睈
Python:
char = '\u7748'
print(char) # Output: 睈
Perl:
my $char = "\x{7748}";
print $char; # Output: 睈
PHP:
$char = "\x{7748}";
echo $char; // Output: 睈
Ruby:
char = "\u{7748}"
puts char # Output: 睈
Rust:
let c = '\u{7748}';
println!("{}", c); // Output: 睈
Go:
char := '\u7748'
fmt.Printf("%c\n", char) // Output: 睈
CSS:
/* CSS content property */
.element::before {
content: "\007748"; /* 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%88
MD5:
fa074ab984067470638261f65934fcd9
SHA1:
2584fae8cf0d2f4fc7728da1f883ac6e49745734
Base64:
552I