C:
char c = '\u7911';
printf("%c\n", c); // Output: 礑
JavaScript:
const char = '\u7911';
console.log(char); // Output: 礑
Java:
char c = '\u7911';
System.out.println(c); // Output: 礑
JSON:
{"text": "\u7911"} // Value: 礑
Python:
char = '\u7911'
print(char) # Output: 礑
Perl:
my $char = "\x{7911}";
print $char; # Output: 礑
PHP:
$char = "\x{7911}";
echo $char; // Output: 礑
Ruby:
char = "\u{7911}"
puts char # Output: 礑
Rust:
let c = '\u{7911}';
println!("{}", c); // Output: 礑
Go:
char := '\u7911'
fmt.Printf("%c\n", char) // Output: 礑
CSS:
/* CSS content property */
.element::before {
content: "\007911"; /* 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%A4%91
MD5:
22db9875d4dfb242615f3bae5d265efa
SHA1:
fec2c37a47d07bbd50acd3ded374653358c87b96
Base64:
56SR