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