C:
char c = '\u9848';
printf("%c\n", c); // Output: 顈
JavaScript:
const char = '\u9848';
console.log(char); // Output: 顈
Java:
char c = '\u9848';
System.out.println(c); // Output: 顈
JSON:
{"text": "\u9848"} // Value: 顈
Python:
char = '\u9848'
print(char) # Output: 顈
Perl:
my $char = "\x{9848}";
print $char; # Output: 顈
PHP:
$char = "\x{9848}";
echo $char; // Output: 顈
Ruby:
char = "\u{9848}"
puts char # Output: 顈
Rust:
let c = '\u{9848}';
println!("{}", c); // Output: 顈
Go:
char := '\u9848'
fmt.Printf("%c\n", char) // Output: 顈
CSS:
/* CSS content property */
.element::before {
content: "\009848"; /* 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%88
MD5:
2af9a9fc7d95058d2b46532a15a9a92f
SHA1:
42f327d4870a2685429d8d518ac5e45a7f199f91
Base64:
6aGI