C:
char c = '\u9462';
printf("%c\n", c); // Output: 鑢
JavaScript:
const char = '\u9462';
console.log(char); // Output: 鑢
Java:
char c = '\u9462';
System.out.println(c); // Output: 鑢
JSON:
{"text": "\u9462"} // Value: 鑢
Python:
char = '\u9462'
print(char) # Output: 鑢
Perl:
my $char = "\x{9462}";
print $char; # Output: 鑢
PHP:
$char = "\x{9462}";
echo $char; // Output: 鑢
Ruby:
char = "\u{9462}"
puts char # Output: 鑢
Rust:
let c = '\u{9462}';
println!("{}", c); // Output: 鑢
Go:
char := '\u9462'
fmt.Printf("%c\n", char) // Output: 鑢
CSS:
/* CSS content property */
.element::before {
content: "\009462"; /* 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%91%A2
MD5:
7ca6ba8aaf212a7c42cec3591c077c6a
SHA1:
7f326ab684df26b68c67a6e815a064389eeb5025
Base64:
6ZGi