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