C:
char c = '\u9894';
printf("%c\n", c); // Output: 颔
JavaScript:
const char = '\u9894';
console.log(char); // Output: 颔
Java:
char c = '\u9894';
System.out.println(c); // Output: 颔
JSON:
{"text": "\u9894"} // Value: 颔
Python:
char = '\u9894'
print(char) # Output: 颔
Perl:
my $char = "\x{9894}";
print $char; # Output: 颔
PHP:
$char = "\x{9894}";
echo $char; // Output: 颔
Ruby:
char = "\u{9894}"
puts char # Output: 颔
Rust:
let c = '\u{9894}';
println!("{}", c); // Output: 颔
Go:
char := '\u9894'
fmt.Printf("%c\n", char) // Output: 颔
CSS:
/* CSS content property */
.element::before {
content: "\009894"; /* 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%A2%94
MD5:
56362e177d6c4cee19c423dfb19de4f2
SHA1:
982720486f9d1c15f20c10629630b83161d6291b
Base64:
6aKU