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