C:
char c = '\u9349';
printf("%c\n", c); // Output: 鍉
JavaScript:
const char = '\u9349';
console.log(char); // Output: 鍉
Java:
char c = '\u9349';
System.out.println(c); // Output: 鍉
JSON:
{"text": "\u9349"} // Value: 鍉
Python:
char = '\u9349'
print(char) # Output: 鍉
Perl:
my $char = "\x{9349}";
print $char; # Output: 鍉
PHP:
$char = "\x{9349}";
echo $char; // Output: 鍉
Ruby:
char = "\u{9349}"
puts char # Output: 鍉
Rust:
let c = '\u{9349}';
println!("{}", c); // Output: 鍉
Go:
char := '\u9349'
fmt.Printf("%c\n", char) // Output: 鍉
CSS:
/* CSS content property */
.element::before {
content: "\009349"; /* 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%89
MD5:
bc36d668aaa9228e6e4e975093623c49
SHA1:
1ccf04e352e1d4b81b87afe5260a1f742dda5f4f
Base64:
6Y2J