C:
char c = '\u9340';
printf("%c\n", c); // Output: 鍀
JavaScript:
const char = '\u9340';
console.log(char); // Output: 鍀
Java:
char c = '\u9340';
System.out.println(c); // Output: 鍀
JSON:
{"text": "\u9340"} // Value: 鍀
Python:
char = '\u9340'
print(char) # Output: 鍀
Perl:
my $char = "\x{9340}";
print $char; # Output: 鍀
PHP:
$char = "\x{9340}";
echo $char; // Output: 鍀
Ruby:
char = "\u{9340}"
puts char # Output: 鍀
Rust:
let c = '\u{9340}';
println!("{}", c); // Output: 鍀
Go:
char := '\u9340'
fmt.Printf("%c\n", char) // Output: 鍀
CSS:
/* CSS content property */
.element::before {
content: "\009340"; /* 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%8D%80
MD5:
77c2e4c2c7a31f66cd849a17d3d21dca
SHA1:
bc6399176f22e3fe95a2dcc526c977d2273a192f
Base64:
6Y2A