C:
char c = '\u9802';
printf("%c\n", c); // Output: 頂
JavaScript:
const char = '\u9802';
console.log(char); // Output: 頂
Java:
char c = '\u9802';
System.out.println(c); // Output: 頂
JSON:
{"text": "\u9802"} // Value: 頂
Python:
char = '\u9802'
print(char) # Output: 頂
Perl:
my $char = "\x{9802}";
print $char; # Output: 頂
PHP:
$char = "\x{9802}";
echo $char; // Output: 頂
Ruby:
char = "\u{9802}"
puts char # Output: 頂
Rust:
let c = '\u{9802}';
println!("{}", c); // Output: 頂
Go:
char := '\u9802'
fmt.Printf("%c\n", char) // Output: 頂
CSS:
/* CSS content property */
.element::before {
content: "\009802"; /* 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%82
MD5:
ca5ddec81da0272b2e0e7b02c75a64cc
SHA1:
09fd153079dbe1e12fbff840c653f62734022bb9
Base64:
6aCC