C:
char c = '\u9322';
printf("%c\n", c); // Output: 錢
JavaScript:
const char = '\u9322';
console.log(char); // Output: 錢
Java:
char c = '\u9322';
System.out.println(c); // Output: 錢
JSON:
{"text": "\u9322"} // Value: 錢
Python:
char = '\u9322'
print(char) # Output: 錢
Perl:
my $char = "\x{9322}";
print $char; # Output: 錢
PHP:
$char = "\x{9322}";
echo $char; // Output: 錢
Ruby:
char = "\u{9322}"
puts char # Output: 錢
Rust:
let c = '\u{9322}';
println!("{}", c); // Output: 錢
Go:
char := '\u9322'
fmt.Printf("%c\n", char) // Output: 錢
CSS:
/* CSS content property */
.element::before {
content: "\009322"; /* 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%A2
MD5:
8736570e757e1773f6ecd1bef0efb38b
SHA1:
04ffe5d375308b1676a3017179d4db84f4516e63
Base64:
6Yyi