C:
char c = '\u9258';
printf("%c\n", c); // Output: 鉘
JavaScript:
const char = '\u9258';
console.log(char); // Output: 鉘
Java:
char c = '\u9258';
System.out.println(c); // Output: 鉘
JSON:
{"text": "\u9258"} // Value: 鉘
Python:
char = '\u9258'
print(char) # Output: 鉘
Perl:
my $char = "\x{9258}";
print $char; # Output: 鉘
PHP:
$char = "\x{9258}";
echo $char; // Output: 鉘
Ruby:
char = "\u{9258}"
puts char # Output: 鉘
Rust:
let c = '\u{9258}';
println!("{}", c); // Output: 鉘
Go:
char := '\u9258'
fmt.Printf("%c\n", char) // Output: 鉘
CSS:
/* CSS content property */
.element::before {
content: "\009258"; /* 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%98
MD5:
79c303bfe9497038f7b74fd65984476e
SHA1:
53e046d947f595eb69bb83ab68695f0983763172
Base64:
6YmY