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