C:
char c = '\u9807';
printf("%c\n", c); // Output: 頇
JavaScript:
const char = '\u9807';
console.log(char); // Output: 頇
Java:
char c = '\u9807';
System.out.println(c); // Output: 頇
JSON:
{"text": "\u9807"} // Value: 頇
Python:
char = '\u9807'
print(char) # Output: 頇
Perl:
my $char = "\x{9807}";
print $char; # Output: 頇
PHP:
$char = "\x{9807}";
echo $char; // Output: 頇
Ruby:
char = "\u{9807}"
puts char # Output: 頇
Rust:
let c = '\u{9807}';
println!("{}", c); // Output: 頇
Go:
char := '\u9807'
fmt.Printf("%c\n", char) // Output: 頇
CSS:
/* CSS content property */
.element::before {
content: "\009807"; /* 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%87
MD5:
0f162d0d39f9dd964e3fbe1809be6d69
SHA1:
b59761bf46ae3f6bd370b5051ab06fe598fa49f1
Base64:
6aCH