C:
char c = '\u9819';
printf("%c\n", c); // Output: 頙
JavaScript:
const char = '\u9819';
console.log(char); // Output: 頙
Java:
char c = '\u9819';
System.out.println(c); // Output: 頙
JSON:
{"text": "\u9819"} // Value: 頙
Python:
char = '\u9819'
print(char) # Output: 頙
Perl:
my $char = "\x{9819}";
print $char; # Output: 頙
PHP:
$char = "\x{9819}";
echo $char; // Output: 頙
Ruby:
char = "\u{9819}"
puts char # Output: 頙
Rust:
let c = '\u{9819}';
println!("{}", c); // Output: 頙
Go:
char := '\u9819'
fmt.Printf("%c\n", char) // Output: 頙
CSS:
/* CSS content property */
.element::before {
content: "\009819"; /* 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%A0%99
MD5:
739948c02aa1364226fe0b1e2ef5d53c
SHA1:
5b62cb5c9a5638e891c70ec27474f93c2e48aee4
Base64:
6aCZ