C:
char c = '\u9346';
printf("%c\n", c); // Output: 鍆
JavaScript:
const char = '\u9346';
console.log(char); // Output: 鍆
Java:
char c = '\u9346';
System.out.println(c); // Output: 鍆
JSON:
{"text": "\u9346"} // Value: 鍆
Python:
char = '\u9346'
print(char) # Output: 鍆
Perl:
my $char = "\x{9346}";
print $char; # Output: 鍆
PHP:
$char = "\x{9346}";
echo $char; // Output: 鍆
Ruby:
char = "\u{9346}"
puts char # Output: 鍆
Rust:
let c = '\u{9346}';
println!("{}", c); // Output: 鍆
Go:
char := '\u9346'
fmt.Printf("%c\n", char) // Output: 鍆
CSS:
/* CSS content property */
.element::before {
content: "\009346"; /* 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%8D%86
MD5:
86da670109cc440da0f05c8d20f57dac
SHA1:
d1b57f99876471ef8941060ec0ce3cb5850cb504
Base64:
6Y2G