C:
char c = '\u9323';
printf("%c\n", c); // Output: 錣
JavaScript:
const char = '\u9323';
console.log(char); // Output: 錣
Java:
char c = '\u9323';
System.out.println(c); // Output: 錣
JSON:
{"text": "\u9323"} // Value: 錣
Python:
char = '\u9323'
print(char) # Output: 錣
Perl:
my $char = "\x{9323}";
print $char; # Output: 錣
PHP:
$char = "\x{9323}";
echo $char; // Output: 錣
Ruby:
char = "\u{9323}"
puts char # Output: 錣
Rust:
let c = '\u{9323}';
println!("{}", c); // Output: 錣
Go:
char := '\u9323'
fmt.Printf("%c\n", char) // Output: 錣
CSS:
/* CSS content property */
.element::before {
content: "\009323"; /* 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%A3
MD5:
5350bd3056e4f2d4936a83f4d2cafc36
SHA1:
4aeaf01f1aef0dc9a8a27f30c0dc200105085c43
Base64:
6Yyj