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