C:
char c = '\u7758';
printf("%c\n", c); // Output: 睘
JavaScript:
const char = '\u7758';
console.log(char); // Output: 睘
Java:
char c = '\u7758';
System.out.println(c); // Output: 睘
JSON:
{"text": "\u7758"} // Value: 睘
Python:
char = '\u7758'
print(char) # Output: 睘
Perl:
my $char = "\x{7758}";
print $char; # Output: 睘
PHP:
$char = "\x{7758}";
echo $char; // Output: 睘
Ruby:
char = "\u{7758}"
puts char # Output: 睘
Rust:
let c = '\u{7758}';
println!("{}", c); // Output: 睘
Go:
char := '\u7758'
fmt.Printf("%c\n", char) // Output: 睘
CSS:
/* CSS content property */
.element::before {
content: "\007758"; /* 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%98
MD5:
6dce18d3869c484e96bcc62441f66f60
SHA1:
898f04373cdda8e61dedefda4951955d8f62622e
Base64:
552Y