C:
char c = '\u9430';
printf("%c\n", c); // Output: 鐰
JavaScript:
const char = '\u9430';
console.log(char); // Output: 鐰
Java:
char c = '\u9430';
System.out.println(c); // Output: 鐰
JSON:
{"text": "\u9430"} // Value: 鐰
Python:
char = '\u9430'
print(char) # Output: 鐰
Perl:
my $char = "\x{9430}";
print $char; # Output: 鐰
PHP:
$char = "\x{9430}";
echo $char; // Output: 鐰
Ruby:
char = "\u{9430}"
puts char # Output: 鐰
Rust:
let c = '\u{9430}';
println!("{}", c); // Output: 鐰
Go:
char := '\u9430'
fmt.Printf("%c\n", char) // Output: 鐰
CSS:
/* CSS content property */
.element::before {
content: "\009430"; /* 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%B0
MD5:
f01f04e31132fcaf507a74eea6885719
SHA1:
15f20fd3e4947b9bbe4ae5e5d52d9c47f2202707
Base64:
6ZCw