C:
char c = '\u9250';
printf("%c\n", c); // Output: 鉐
JavaScript:
const char = '\u9250';
console.log(char); // Output: 鉐
Java:
char c = '\u9250';
System.out.println(c); // Output: 鉐
JSON:
{"text": "\u9250"} // Value: 鉐
Python:
char = '\u9250'
print(char) # Output: 鉐
Perl:
my $char = "\x{9250}";
print $char; # Output: 鉐
PHP:
$char = "\x{9250}";
echo $char; // Output: 鉐
Ruby:
char = "\u{9250}"
puts char # Output: 鉐
Rust:
let c = '\u{9250}';
println!("{}", c); // Output: 鉐
Go:
char := '\u9250'
fmt.Printf("%c\n", char) // Output: 鉐
CSS:
/* CSS content property */
.element::before {
content: "\009250"; /* 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%90
MD5:
edca153a7680be3b1eb1d9ed0406f0b1
SHA1:
e63ec155d3ed617eafbc5c5cd278768daa759301
Base64:
6YmQ