C:
char c = '\u9452';
printf("%c\n", c); // Output: 鑒
JavaScript:
const char = '\u9452';
console.log(char); // Output: 鑒
Java:
char c = '\u9452';
System.out.println(c); // Output: 鑒
JSON:
{"text": "\u9452"} // Value: 鑒
Python:
char = '\u9452'
print(char) # Output: 鑒
Perl:
my $char = "\x{9452}";
print $char; # Output: 鑒
PHP:
$char = "\x{9452}";
echo $char; // Output: 鑒
Ruby:
char = "\u{9452}"
puts char # Output: 鑒
Rust:
let c = '\u{9452}';
println!("{}", c); // Output: 鑒
Go:
char := '\u9452'
fmt.Printf("%c\n", char) // Output: 鑒
CSS:
/* CSS content property */
.element::before {
content: "\009452"; /* 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=%E9%91%92
MD5:
1b48d2a4713c57a0c646f8f36cbc632f
SHA1:
e88451e73a71b7dc5c40e5eeb7f16857b44ac623
Base64:
6ZGS