C:
char c = '\u9405';
printf("%c\n", c); // Output: 鐅
JavaScript:
const char = '\u9405';
console.log(char); // Output: 鐅
Java:
char c = '\u9405';
System.out.println(c); // Output: 鐅
JSON:
{"text": "\u9405"} // Value: 鐅
Python:
char = '\u9405'
print(char) # Output: 鐅
Perl:
my $char = "\x{9405}";
print $char; # Output: 鐅
PHP:
$char = "\x{9405}";
echo $char; // Output: 鐅
Ruby:
char = "\u{9405}"
puts char # Output: 鐅
Rust:
let c = '\u{9405}';
println!("{}", c); // Output: 鐅
Go:
char := '\u9405'
fmt.Printf("%c\n", char) // Output: 鐅
CSS:
/* CSS content property */
.element::before {
content: "\009405"; /* 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%85
MD5:
9b1349ecfb8932b724ad1e4d3acf3091
SHA1:
e513fc5a8d0aef572ef231fc501836f9009c04f5
Base64:
6ZCF