C:
char c = '\u9329';
printf("%c\n", c); // Output: 錩
JavaScript:
const char = '\u9329';
console.log(char); // Output: 錩
Java:
char c = '\u9329';
System.out.println(c); // Output: 錩
JSON:
{"text": "\u9329"} // Value: 錩
Python:
char = '\u9329'
print(char) # Output: 錩
Perl:
my $char = "\x{9329}";
print $char; # Output: 錩
PHP:
$char = "\x{9329}";
echo $char; // Output: 錩
Ruby:
char = "\u{9329}"
puts char # Output: 錩
Rust:
let c = '\u{9329}';
println!("{}", c); // Output: 錩
Go:
char := '\u9329'
fmt.Printf("%c\n", char) // Output: 錩
CSS:
/* CSS content property */
.element::before {
content: "\009329"; /* 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%A9
MD5:
0368a58facfcc42725b34b4160c960b5
SHA1:
b2b37581562b73144e35a5ff0789a7343b913438
Base64:
6Yyp