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