C:
char c = '\u9206';
printf("%c\n", c); // Output: 鈆
JavaScript:
const char = '\u9206';
console.log(char); // Output: 鈆
Java:
char c = '\u9206';
System.out.println(c); // Output: 鈆
JSON:
{"text": "\u9206"} // Value: 鈆
Python:
char = '\u9206'
print(char) # Output: 鈆
Perl:
my $char = "\x{9206}";
print $char; # Output: 鈆
PHP:
$char = "\x{9206}";
echo $char; // Output: 鈆
Ruby:
char = "\u{9206}"
puts char # Output: 鈆
Rust:
let c = '\u{9206}';
println!("{}", c); // Output: 鈆
Go:
char := '\u9206'
fmt.Printf("%c\n", char) // Output: 鈆
CSS:
/* CSS content property */
.element::before {
content: "\009206"; /* 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%86
MD5:
c28339d633b12e7c5f5649898b63cf98
SHA1:
c05afcb9d5a18760b98371de5e471c7d2e683120
Base64:
6YiG