C:
char c = '\u7923';
printf("%c\n", c); // Output: 礣
JavaScript:
const char = '\u7923';
console.log(char); // Output: 礣
Java:
char c = '\u7923';
System.out.println(c); // Output: 礣
JSON:
{"text": "\u7923"} // Value: 礣
Python:
char = '\u7923'
print(char) # Output: 礣
Perl:
my $char = "\x{7923}";
print $char; # Output: 礣
PHP:
$char = "\x{7923}";
echo $char; // Output: 礣
Ruby:
char = "\u{7923}"
puts char # Output: 礣
Rust:
let c = '\u{7923}';
println!("{}", c); // Output: 礣
Go:
char := '\u7923'
fmt.Printf("%c\n", char) // Output: 礣
CSS:
/* CSS content property */
.element::before {
content: "\007923"; /* 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%A3
MD5:
c447ae5f55d5a8500c11a92077993a51
SHA1:
c4b70082ea65186a47c8189b0793b19a7f8efb78
Base64:
56Sj