C:
char c = '\u9897';
printf("%c\n", c); // Output: 颗
JavaScript:
const char = '\u9897';
console.log(char); // Output: 颗
Java:
char c = '\u9897';
System.out.println(c); // Output: 颗
JSON:
{"text": "\u9897"} // Value: 颗
Python:
char = '\u9897'
print(char) # Output: 颗
Perl:
my $char = "\x{9897}";
print $char; # Output: 颗
PHP:
$char = "\x{9897}";
echo $char; // Output: 颗
Ruby:
char = "\u{9897}"
puts char # Output: 颗
Rust:
let c = '\u{9897}';
println!("{}", c); // Output: 颗
Go:
char := '\u9897'
fmt.Printf("%c\n", char) // Output: 颗
CSS:
/* CSS content property */
.element::before {
content: "\009897"; /* 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%97
MD5:
acd17c5cca5305aeff0a09fb83087797
SHA1:
d71705bfe205878f684654fc584fb360668f7b1b
Base64:
6aKX