C:
char c = '\u9327';
printf("%c\n", c); // Output: 錧
JavaScript:
const char = '\u9327';
console.log(char); // Output: 錧
Java:
char c = '\u9327';
System.out.println(c); // Output: 錧
JSON:
{"text": "\u9327"} // Value: 錧
Python:
char = '\u9327'
print(char) # Output: 錧
Perl:
my $char = "\x{9327}";
print $char; # Output: 錧
PHP:
$char = "\x{9327}";
echo $char; // Output: 錧
Ruby:
char = "\u{9327}"
puts char # Output: 錧
Rust:
let c = '\u{9327}';
println!("{}", c); // Output: 錧
Go:
char := '\u9327'
fmt.Printf("%c\n", char) // Output: 錧
CSS:
/* CSS content property */
.element::before {
content: "\009327"; /* 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%A7
MD5:
eeaf6aac829a7db5a142bd6ae4ed0732
SHA1:
16664bcb3b150a6011f1e6d6300bbc3cdb6d6d04
Base64:
6Yyn