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