C:
char c = '\u9163';
printf("%c\n", c); // Output: 酣
JavaScript:
const char = '\u9163';
console.log(char); // Output: 酣
Java:
char c = '\u9163';
System.out.println(c); // Output: 酣
JSON:
{"text": "\u9163"} // Value: 酣
Python:
char = '\u9163'
print(char) # Output: 酣
Perl:
my $char = "\x{9163}";
print $char; # Output: 酣
PHP:
$char = "\x{9163}";
echo $char; // Output: 酣
Ruby:
char = "\u{9163}"
puts char # Output: 酣
Rust:
let c = '\u{9163}';
println!("{}", c); // Output: 酣
Go:
char := '\u9163'
fmt.Printf("%c\n", char) // Output: 酣
CSS:
/* CSS content property */
.element::before {
content: "\009163"; /* 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%85%A3
MD5:
2394c5ca20dbffbb954dac9fed54dcd4
SHA1:
40c23ea670e9a29529476733bbf8a81e72b53ce0
Base64:
6YWj