C:
char c = '\u9161';
printf("%c\n", c); // Output: 酡
JavaScript:
const char = '\u9161';
console.log(char); // Output: 酡
Java:
char c = '\u9161';
System.out.println(c); // Output: 酡
JSON:
{"text": "\u9161"} // Value: 酡
Python:
char = '\u9161'
print(char) # Output: 酡
Perl:
my $char = "\x{9161}";
print $char; # Output: 酡
PHP:
$char = "\x{9161}";
echo $char; // Output: 酡
Ruby:
char = "\u{9161}"
puts char # Output: 酡
Rust:
let c = '\u{9161}';
println!("{}", c); // Output: 酡
Go:
char := '\u9161'
fmt.Printf("%c\n", char) // Output: 酡
CSS:
/* CSS content property */
.element::before {
content: "\009161"; /* 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%A1
MD5:
8362896bc7256a4afe6a584e482b4203
SHA1:
60af5be99ea0964d3110b7d48beead86f6de4468
Base64:
6YWh