C:
char c = '\u7776';
printf("%c\n", c); // Output: 睶
JavaScript:
const char = '\u7776';
console.log(char); // Output: 睶
Java:
char c = '\u7776';
System.out.println(c); // Output: 睶
JSON:
{"text": "\u7776"} // Value: 睶
Python:
char = '\u7776'
print(char) # Output: 睶
Perl:
my $char = "\x{7776}";
print $char; # Output: 睶
PHP:
$char = "\x{7776}";
echo $char; // Output: 睶
Ruby:
char = "\u{7776}"
puts char # Output: 睶
Rust:
let c = '\u{7776}';
println!("{}", c); // Output: 睶
Go:
char := '\u7776'
fmt.Printf("%c\n", char) // Output: 睶
CSS:
/* CSS content property */
.element::before {
content: "\007776"; /* 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%B6
MD5:
a3ec3665fa6c6f111d5b8215d435b549
SHA1:
15dc447f77a0caef70aff90d6f2ddd2a95ec9606
Base64:
5522