C:
char c = '\u7755';
printf("%c\n", c); // Output: 睕
JavaScript:
const char = '\u7755';
console.log(char); // Output: 睕
Java:
char c = '\u7755';
System.out.println(c); // Output: 睕
JSON:
{"text": "\u7755"} // Value: 睕
Python:
char = '\u7755'
print(char) # Output: 睕
Perl:
my $char = "\x{7755}";
print $char; # Output: 睕
PHP:
$char = "\x{7755}";
echo $char; // Output: 睕
Ruby:
char = "\u{7755}"
puts char # Output: 睕
Rust:
let c = '\u{7755}';
println!("{}", c); // Output: 睕
Go:
char := '\u7755'
fmt.Printf("%c\n", char) // Output: 睕
CSS:
/* CSS content property */
.element::before {
content: "\007755"; /* 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%95
MD5:
d6ad22f86dc50c5fedd0b931e4f50735
SHA1:
5d470d563e60dce240133d827b4a41fc0df3e2b7
Base64:
552V