C:
char c = '\u9347';
printf("%c\n", c); // Output: 鍇
JavaScript:
const char = '\u9347';
console.log(char); // Output: 鍇
Java:
char c = '\u9347';
System.out.println(c); // Output: 鍇
JSON:
{"text": "\u9347"} // Value: 鍇
Python:
char = '\u9347'
print(char) # Output: 鍇
Perl:
my $char = "\x{9347}";
print $char; # Output: 鍇
PHP:
$char = "\x{9347}";
echo $char; // Output: 鍇
Ruby:
char = "\u{9347}"
puts char # Output: 鍇
Rust:
let c = '\u{9347}';
println!("{}", c); // Output: 鍇
Go:
char := '\u9347'
fmt.Printf("%c\n", char) // Output: 鍇
CSS:
/* CSS content property */
.element::before {
content: "\009347"; /* 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%87
MD5:
9545e70e7537664f284775f76eaedb06
SHA1:
fd299d5709e9bfaf2076697f262c996b0ca05ca7
Base64:
6Y2H