C:
char c = '\u9247';
printf("%c\n", c); // Output: 鉇
JavaScript:
const char = '\u9247';
console.log(char); // Output: 鉇
Java:
char c = '\u9247';
System.out.println(c); // Output: 鉇
JSON:
{"text": "\u9247"} // Value: 鉇
Python:
char = '\u9247'
print(char) # Output: 鉇
Perl:
my $char = "\x{9247}";
print $char; # Output: 鉇
PHP:
$char = "\x{9247}";
echo $char; // Output: 鉇
Ruby:
char = "\u{9247}"
puts char # Output: 鉇
Rust:
let c = '\u{9247}';
println!("{}", c); // Output: 鉇
Go:
char := '\u9247'
fmt.Printf("%c\n", char) // Output: 鉇
CSS:
/* CSS content property */
.element::before {
content: "\009247"; /* 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%89%87
MD5:
d5e398684f8d42da40e089aa635df151
SHA1:
fc82109ea93ee9579a341e869b94d16a15506e6f
Base64:
6YmH