C:
char c = '\u91C2';
printf("%c\n", c); // Output: 釂
JavaScript:
const char = '\u91C2';
console.log(char); // Output: 釂
Java:
char c = '\u91C2';
System.out.println(c); // Output: 釂
JSON:
{"text": "\u91C2"} // Value: 釂
Python:
char = '\u91C2'
print(char) # Output: 釂
Perl:
my $char = "\x{91C2}";
print $char; # Output: 釂
PHP:
$char = "\x{91C2}";
echo $char; // Output: 釂
Ruby:
char = "\u{91C2}"
puts char # Output: 釂
Rust:
let c = '\u{91C2}';
println!("{}", c); // Output: 釂
Go:
char := '\u91C2'
fmt.Printf("%c\n", char) // Output: 釂
CSS:
/* CSS content property */
.element::before {
content: "\0091C2"; /* 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%87%82
MD5:
747b1849c21e7ad76c6ed64322ca6bcd
SHA1:
ef4c75372fe6add7c27cc155843ad03199b480cb
Base64:
6YeC