C:
char c = '\u9840';
printf("%c\n", c); // Output: 顀
JavaScript:
const char = '\u9840';
console.log(char); // Output: 顀
Java:
char c = '\u9840';
System.out.println(c); // Output: 顀
JSON:
{"text": "\u9840"} // Value: 顀
Python:
char = '\u9840'
print(char) # Output: 顀
Perl:
my $char = "\x{9840}";
print $char; # Output: 顀
PHP:
$char = "\x{9840}";
echo $char; // Output: 顀
Ruby:
char = "\u{9840}"
puts char # Output: 顀
Rust:
let c = '\u{9840}';
println!("{}", c); // Output: 顀
Go:
char := '\u9840'
fmt.Printf("%c\n", char) // Output: 顀
CSS:
/* CSS content property */
.element::before {
content: "\009840"; /* 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%80
MD5:
dce36761484710e10993489357b75188
SHA1:
8b15fd902567427cf5d935e9b4b2dbfed8f438e8
Base64:
6aGA