C:
char c = '\u7711';
printf("%c\n", c); // Output: 眑
JavaScript:
const char = '\u7711';
console.log(char); // Output: 眑
Java:
char c = '\u7711';
System.out.println(c); // Output: 眑
JSON:
{"text": "\u7711"} // Value: 眑
Python:
char = '\u7711'
print(char) # Output: 眑
Perl:
my $char = "\x{7711}";
print $char; # Output: 眑
PHP:
$char = "\x{7711}";
echo $char; // Output: 眑
Ruby:
char = "\u{7711}"
puts char # Output: 眑
Rust:
let c = '\u{7711}';
println!("{}", c); // Output: 眑
Go:
char := '\u7711'
fmt.Printf("%c\n", char) // Output: 眑
CSS:
/* CSS content property */
.element::before {
content: "\007711"; /* 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%91
MD5:
4fa2943e34b9c01a9d0fd114bc3d83d5
SHA1:
d60e58bd3a0afc0dd7abc0c5fa362a57adf8cfb8
Base64:
55yR