C:
char c = '\u9870';
printf("%c\n", c); // Output: 顰
JavaScript:
const char = '\u9870';
console.log(char); // Output: 顰
Java:
char c = '\u9870';
System.out.println(c); // Output: 顰
JSON:
{"text": "\u9870"} // Value: 顰
Python:
char = '\u9870'
print(char) # Output: 顰
Perl:
my $char = "\x{9870}";
print $char; # Output: 顰
PHP:
$char = "\x{9870}";
echo $char; // Output: 顰
Ruby:
char = "\u{9870}"
puts char # Output: 顰
Rust:
let c = '\u{9870}';
println!("{}", c); // Output: 顰
Go:
char := '\u9870'
fmt.Printf("%c\n", char) // Output: 顰
CSS:
/* CSS content property */
.element::before {
content: "\009870"; /* 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%A1%B0
MD5:
53dc1b084f22a975a2298c16a84ffa20
SHA1:
0655c92b23caae09f5d11a3dd38eaf4bc462613e
Base64:
6aGw