C:
char c = '\u9424';
printf("%c\n", c); // Output: 鐤
JavaScript:
const char = '\u9424';
console.log(char); // Output: 鐤
Java:
char c = '\u9424';
System.out.println(c); // Output: 鐤
JSON:
{"text": "\u9424"} // Value: 鐤
Python:
char = '\u9424'
print(char) # Output: 鐤
Perl:
my $char = "\x{9424}";
print $char; # Output: 鐤
PHP:
$char = "\x{9424}";
echo $char; // Output: 鐤
Ruby:
char = "\u{9424}"
puts char # Output: 鐤
Rust:
let c = '\u{9424}';
println!("{}", c); // Output: 鐤
Go:
char := '\u9424'
fmt.Printf("%c\n", char) // Output: 鐤
CSS:
/* CSS content property */
.element::before {
content: "\009424"; /* 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%A4
MD5:
1c1d16a482e72da36aef1ce519e3601c
SHA1:
a152bd5960737174d63bf4d76657a25151921c13
Base64:
6ZCk