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