C:
char c = '\u9326';
printf("%c\n", c); // Output: 錦
JavaScript:
const char = '\u9326';
console.log(char); // Output: 錦
Java:
char c = '\u9326';
System.out.println(c); // Output: 錦
JSON:
{"text": "\u9326"} // Value: 錦
Python:
char = '\u9326'
print(char) # Output: 錦
Perl:
my $char = "\x{9326}";
print $char; # Output: 錦
PHP:
$char = "\x{9326}";
echo $char; // Output: 錦
Ruby:
char = "\u{9326}"
puts char # Output: 錦
Rust:
let c = '\u{9326}';
println!("{}", c); // Output: 錦
Go:
char := '\u9326'
fmt.Printf("%c\n", char) // Output: 錦
CSS:
/* CSS content property */
.element::before {
content: "\009326"; /* 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%8C%A6
MD5:
ce53286491025cb98aad88fff8253cae
SHA1:
d717bbba5cdcee90fa7ff3fe927e9c7cb46696b8
Base64:
6Yym