C:
char c = '\u9343';
printf("%c\n", c); // Output: 鍃
JavaScript:
const char = '\u9343';
console.log(char); // Output: 鍃
Java:
char c = '\u9343';
System.out.println(c); // Output: 鍃
JSON:
{"text": "\u9343"} // Value: 鍃
Python:
char = '\u9343'
print(char) # Output: 鍃
Perl:
my $char = "\x{9343}";
print $char; # Output: 鍃
PHP:
$char = "\x{9343}";
echo $char; // Output: 鍃
Ruby:
char = "\u{9343}"
puts char # Output: 鍃
Rust:
let c = '\u{9343}';
println!("{}", c); // Output: 鍃
Go:
char := '\u9343'
fmt.Printf("%c\n", char) // Output: 鍃
CSS:
/* CSS content property */
.element::before {
content: "\009343"; /* 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%83
MD5:
3eff76481e5b4f6c7369812486ff901f
SHA1:
7126d8897f79ffd6f14ecffe7d38373de25cd8d6
Base64:
6Y2D