C:
char c = '\u7700';
printf("%c\n", c); // Output: 眀
JavaScript:
const char = '\u7700';
console.log(char); // Output: 眀
Java:
char c = '\u7700';
System.out.println(c); // Output: 眀
JSON:
{"text": "\u7700"} // Value: 眀
Python:
char = '\u7700'
print(char) # Output: 眀
Perl:
my $char = "\x{7700}";
print $char; # Output: 眀
PHP:
$char = "\x{7700}";
echo $char; // Output: 眀
Ruby:
char = "\u{7700}"
puts char # Output: 眀
Rust:
let c = '\u{7700}';
println!("{}", c); // Output: 眀
Go:
char := '\u7700'
fmt.Printf("%c\n", char) // Output: 眀
CSS:
/* CSS content property */
.element::before {
content: "\007700"; /* 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%9C%80
MD5:
f106335bbccbb80d5eebaa41a4f034a2
SHA1:
2d03511cda998d4d961e7ea757b9d717dfe3e9cf
Base64:
55yA