C:
char c = '\u9403';
printf("%c\n", c); // Output: 鐃
JavaScript:
const char = '\u9403';
console.log(char); // Output: 鐃
Java:
char c = '\u9403';
System.out.println(c); // Output: 鐃
JSON:
{"text": "\u9403"} // Value: 鐃
Python:
char = '\u9403'
print(char) # Output: 鐃
Perl:
my $char = "\x{9403}";
print $char; # Output: 鐃
PHP:
$char = "\x{9403}";
echo $char; // Output: 鐃
Ruby:
char = "\u{9403}"
puts char # Output: 鐃
Rust:
let c = '\u{9403}';
println!("{}", c); // Output: 鐃
Go:
char := '\u9403'
fmt.Printf("%c\n", char) // Output: 鐃
CSS:
/* CSS content property */
.element::before {
content: "\009403"; /* 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%90%83
MD5:
b1eaed4353a494fb3757e0241b29d30f
SHA1:
ecc307df84d7a097b9cb7c02235a89e28ddec53e
Base64:
6ZCD