C:
char c = '\u9887';
printf("%c\n", c); // Output: 颇
JavaScript:
const char = '\u9887';
console.log(char); // Output: 颇
Java:
char c = '\u9887';
System.out.println(c); // Output: 颇
JSON:
{"text": "\u9887"} // Value: 颇
Python:
char = '\u9887'
print(char) # Output: 颇
Perl:
my $char = "\x{9887}";
print $char; # Output: 颇
PHP:
$char = "\x{9887}";
echo $char; // Output: 颇
Ruby:
char = "\u{9887}"
puts char # Output: 颇
Rust:
let c = '\u{9887}';
println!("{}", c); // Output: 颇
Go:
char := '\u9887'
fmt.Printf("%c\n", char) // Output: 颇
CSS:
/* CSS content property */
.element::before {
content: "\009887"; /* 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%87
MD5:
f82efb55703c17c13c30aaf199ef9d10
SHA1:
99ba97eff7f0d08dd2b43b507ff576896c73f6c7
Base64:
6aKH