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