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