C:
char c = '\u9192';
printf("%c\n", c); // Output: 醒
JavaScript:
const char = '\u9192';
console.log(char); // Output: 醒
Java:
char c = '\u9192';
System.out.println(c); // Output: 醒
JSON:
{"text": "\u9192"} // Value: 醒
Python:
char = '\u9192'
print(char) # Output: 醒
Perl:
my $char = "\x{9192}";
print $char; # Output: 醒
PHP:
$char = "\x{9192}";
echo $char; // Output: 醒
Ruby:
char = "\u{9192}"
puts char # Output: 醒
Rust:
let c = '\u{9192}';
println!("{}", c); // Output: 醒
Go:
char := '\u9192'
fmt.Printf("%c\n", char) // Output: 醒
CSS:
/* CSS content property */
.element::before {
content: "\009192"; /* 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%92
MD5:
badaebd509d6d703e5af296bfabfc913
SHA1:
9e66b61b2b0a187e165b192c77c14b9c3d3f8c66
Base64:
6YaS