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