C:
char c = '\u9814';
printf("%c\n", c); // Output: 頔
JavaScript:
const char = '\u9814';
console.log(char); // Output: 頔
Java:
char c = '\u9814';
System.out.println(c); // Output: 頔
JSON:
{"text": "\u9814"} // Value: 頔
Python:
char = '\u9814'
print(char) # Output: 頔
Perl:
my $char = "\x{9814}";
print $char; # Output: 頔
PHP:
$char = "\x{9814}";
echo $char; // Output: 頔
Ruby:
char = "\u{9814}"
puts char # Output: 頔
Rust:
let c = '\u{9814}';
println!("{}", c); // Output: 頔
Go:
char := '\u9814'
fmt.Printf("%c\n", char) // Output: 頔
CSS:
/* CSS content property */
.element::before {
content: "\009814"; /* 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%94
MD5:
708f7b811b735e33181585e94d153c5f
SHA1:
7c0b3686f545240bae7823feda3cd28b3ed200f3
Base64:
6aCU