C:
char c = '\u9453';
printf("%c\n", c); // Output: 鑓
JavaScript:
const char = '\u9453';
console.log(char); // Output: 鑓
Java:
char c = '\u9453';
System.out.println(c); // Output: 鑓
JSON:
{"text": "\u9453"} // Value: 鑓
Python:
char = '\u9453'
print(char) # Output: 鑓
Perl:
my $char = "\x{9453}";
print $char; # Output: 鑓
PHP:
$char = "\x{9453}";
echo $char; // Output: 鑓
Ruby:
char = "\u{9453}"
puts char # Output: 鑓
Rust:
let c = '\u{9453}';
println!("{}", c); // Output: 鑓
Go:
char := '\u9453'
fmt.Printf("%c\n", char) // Output: 鑓
CSS:
/* CSS content property */
.element::before {
content: "\009453"; /* 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%93
MD5:
d137d435f4011faa56a9cd3ddc15f3bc
SHA1:
add9737975654b8af9ea577f7c2893ddbeb1c3e9
Base64:
6ZGT