C:
char c = '\u9370';
printf("%c\n", c); // Output: 鍰
JavaScript:
const char = '\u9370';
console.log(char); // Output: 鍰
Java:
char c = '\u9370';
System.out.println(c); // Output: 鍰
JSON:
{"text": "\u9370"} // Value: 鍰
Python:
char = '\u9370'
print(char) # Output: 鍰
Perl:
my $char = "\x{9370}";
print $char; # Output: 鍰
PHP:
$char = "\x{9370}";
echo $char; // Output: 鍰
Ruby:
char = "\u{9370}"
puts char # Output: 鍰
Rust:
let c = '\u{9370}';
println!("{}", c); // Output: 鍰
Go:
char := '\u9370'
fmt.Printf("%c\n", char) // Output: 鍰
CSS:
/* CSS content property */
.element::before {
content: "\009370"; /* 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%B0
MD5:
2183d6eea721e01e8b8fbe45fe99f70f
SHA1:
7ee90d2db4aa25eb62a1543db205a7530c565238
Base64:
6Y2w