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