C:
char c = '\u9198';
printf("%c\n", c); // Output: 醘
JavaScript:
const char = '\u9198';
console.log(char); // Output: 醘
Java:
char c = '\u9198';
System.out.println(c); // Output: 醘
JSON:
{"text": "\u9198"} // Value: 醘
Python:
char = '\u9198'
print(char) # Output: 醘
Perl:
my $char = "\x{9198}";
print $char; # Output: 醘
PHP:
$char = "\x{9198}";
echo $char; // Output: 醘
Ruby:
char = "\u{9198}"
puts char # Output: 醘
Rust:
let c = '\u{9198}';
println!("{}", c); // Output: 醘
Go:
char := '\u9198'
fmt.Printf("%c\n", char) // Output: 醘
CSS:
/* CSS content property */
.element::before {
content: "\009198"; /* 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%98
MD5:
01f7613bf81f7e822ed7af85d01378f6
SHA1:
dee63936876a49a35ee08ab6e2258829050c7e34
Base64:
6YaY