C:
char c = '\u9214';
printf("%c\n", c); // Output: 鈔
JavaScript:
const char = '\u9214';
console.log(char); // Output: 鈔
Java:
char c = '\u9214';
System.out.println(c); // Output: 鈔
JSON:
{"text": "\u9214"} // Value: 鈔
Python:
char = '\u9214'
print(char) # Output: 鈔
Perl:
my $char = "\x{9214}";
print $char; # Output: 鈔
PHP:
$char = "\x{9214}";
echo $char; // Output: 鈔
Ruby:
char = "\u{9214}"
puts char # Output: 鈔
Rust:
let c = '\u{9214}';
println!("{}", c); // Output: 鈔
Go:
char := '\u9214'
fmt.Printf("%c\n", char) // Output: 鈔
CSS:
/* CSS content property */
.element::before {
content: "\009214"; /* 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%88%94
MD5:
68adaec5d3d539efc208f3e7da8b75bd
SHA1:
0106e6ee199ca5ef6045d9fccc9d344a6a2f7062
Base64:
6YiU