C:
char c = '\u7775';
printf("%c\n", c); // Output: 睵
JavaScript:
const char = '\u7775';
console.log(char); // Output: 睵
Java:
char c = '\u7775';
System.out.println(c); // Output: 睵
JSON:
{"text": "\u7775"} // Value: 睵
Python:
char = '\u7775'
print(char) # Output: 睵
Perl:
my $char = "\x{7775}";
print $char; # Output: 睵
PHP:
$char = "\x{7775}";
echo $char; // Output: 睵
Ruby:
char = "\u{7775}"
puts char # Output: 睵
Rust:
let c = '\u{7775}';
println!("{}", c); // Output: 睵
Go:
char := '\u7775'
fmt.Printf("%c\n", char) // Output: 睵
CSS:
/* CSS content property */
.element::before {
content: "\007775"; /* 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%B5
MD5:
bb5cffa8290fac36932ffc04ce6e91eb
SHA1:
91ad35f3891dc1e4c239bef39549856771e361f5
Base64:
5521