C:
char c = '\u9189';
printf("%c\n", c); // Output: 醉
JavaScript:
const char = '\u9189';
console.log(char); // Output: 醉
Java:
char c = '\u9189';
System.out.println(c); // Output: 醉
JSON:
{"text": "\u9189"} // Value: 醉
Python:
char = '\u9189'
print(char) # Output: 醉
Perl:
my $char = "\x{9189}";
print $char; # Output: 醉
PHP:
$char = "\x{9189}";
echo $char; // Output: 醉
Ruby:
char = "\u{9189}"
puts char # Output: 醉
Rust:
let c = '\u{9189}';
println!("{}", c); // Output: 醉
Go:
char := '\u9189'
fmt.Printf("%c\n", char) // Output: 醉
CSS:
/* CSS content property */
.element::before {
content: "\009189"; /* 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%89
MD5:
3da9c8fd21f9359edf039c4154701460
SHA1:
5c2df0ffb357591bb4abc29727a46ef4e67fe148
Base64:
6YaJ