C:
char c = '\u9890';
printf("%c\n", c); // Output: 颐
JavaScript:
const char = '\u9890';
console.log(char); // Output: 颐
Java:
char c = '\u9890';
System.out.println(c); // Output: 颐
JSON:
{"text": "\u9890"} // Value: 颐
Python:
char = '\u9890'
print(char) # Output: 颐
Perl:
my $char = "\x{9890}";
print $char; # Output: 颐
PHP:
$char = "\x{9890}";
echo $char; // Output: 颐
Ruby:
char = "\u{9890}"
puts char # Output: 颐
Rust:
let c = '\u{9890}';
println!("{}", c); // Output: 颐
Go:
char := '\u9890'
fmt.Printf("%c\n", char) // Output: 颐
CSS:
/* CSS content property */
.element::before {
content: "\009890"; /* 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%90
MD5:
77905b504f9f223f29f6dd6df19c7814
SHA1:
f4370fbee665c4d53b24b11503b90a92559191cb
Base64:
6aKQ