C:
char c = '\u9824';
printf("%c\n", c); // Output: 頤
JavaScript:
const char = '\u9824';
console.log(char); // Output: 頤
Java:
char c = '\u9824';
System.out.println(c); // Output: 頤
JSON:
{"text": "\u9824"} // Value: 頤
Python:
char = '\u9824'
print(char) # Output: 頤
Perl:
my $char = "\x{9824}";
print $char; # Output: 頤
PHP:
$char = "\x{9824}";
echo $char; // Output: 頤
Ruby:
char = "\u{9824}"
puts char # Output: 頤
Rust:
let c = '\u{9824}';
println!("{}", c); // Output: 頤
Go:
char := '\u9824'
fmt.Printf("%c\n", char) // Output: 頤
CSS:
/* CSS content property */
.element::before {
content: "\009824"; /* 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%A4
MD5:
2902032051450aa2d221308849509920
SHA1:
27c83bd4dde7778cbd2bb6802e9e81aba043dd12
Base64:
6aCk