C:
char c = '\u9254';
printf("%c\n", c); // Output: 鉔
JavaScript:
const char = '\u9254';
console.log(char); // Output: 鉔
Java:
char c = '\u9254';
System.out.println(c); // Output: 鉔
JSON:
{"text": "\u9254"} // Value: 鉔
Python:
char = '\u9254'
print(char) # Output: 鉔
Perl:
my $char = "\x{9254}";
print $char; # Output: 鉔
PHP:
$char = "\x{9254}";
echo $char; // Output: 鉔
Ruby:
char = "\u{9254}"
puts char # Output: 鉔
Rust:
let c = '\u{9254}';
println!("{}", c); // Output: 鉔
Go:
char := '\u9254'
fmt.Printf("%c\n", char) // Output: 鉔
CSS:
/* CSS content property */
.element::before {
content: "\009254"; /* 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%94
MD5:
49c52400b810f25be1ad6b92559ca5b3
SHA1:
f1a2cca1bdd48852c4008cf95ec2450c577b0ffb
Base64:
6YmU