C:
char c = '\u9166';
printf("%c\n", c); // Output: 酦
JavaScript:
const char = '\u9166';
console.log(char); // Output: 酦
Java:
char c = '\u9166';
System.out.println(c); // Output: 酦
JSON:
{"text": "\u9166"} // Value: 酦
Python:
char = '\u9166'
print(char) # Output: 酦
Perl:
my $char = "\x{9166}";
print $char; # Output: 酦
PHP:
$char = "\x{9166}";
echo $char; // Output: 酦
Ruby:
char = "\u{9166}"
puts char # Output: 酦
Rust:
let c = '\u{9166}';
println!("{}", c); // Output: 酦
Go:
char := '\u9166'
fmt.Printf("%c\n", char) // Output: 酦
CSS:
/* CSS content property */
.element::before {
content: "\009166"; /* 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%A6
MD5:
5529628926571925b683230a24d173d8
SHA1:
f621791cb2c34de3500786a2bbbdfa39de3e067d
Base64:
6YWm