C:
char c = '\u7773';
printf("%c\n", c); // Output: 睳
JavaScript:
const char = '\u7773';
console.log(char); // Output: 睳
Java:
char c = '\u7773';
System.out.println(c); // Output: 睳
JSON:
{"text": "\u7773"} // Value: 睳
Python:
char = '\u7773'
print(char) # Output: 睳
Perl:
my $char = "\x{7773}";
print $char; # Output: 睳
PHP:
$char = "\x{7773}";
echo $char; // Output: 睳
Ruby:
char = "\u{7773}"
puts char # Output: 睳
Rust:
let c = '\u{7773}';
println!("{}", c); // Output: 睳
Go:
char := '\u7773'
fmt.Printf("%c\n", char) // Output: 睳
CSS:
/* CSS content property */
.element::before {
content: "\007773"; /* 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%B3
MD5:
3a7b011dbc513d95c3a522d6714eb3a0
SHA1:
a187063afcae5d2f8071f1ef2cf66dc82ec15f33
Base64:
552z