C:
char c = '\u9864';
printf("%c\n", c); // Output: 顤
JavaScript:
const char = '\u9864';
console.log(char); // Output: 顤
Java:
char c = '\u9864';
System.out.println(c); // Output: 顤
JSON:
{"text": "\u9864"} // Value: 顤
Python:
char = '\u9864'
print(char) # Output: 顤
Perl:
my $char = "\x{9864}";
print $char; # Output: 顤
PHP:
$char = "\x{9864}";
echo $char; // Output: 顤
Ruby:
char = "\u{9864}"
puts char # Output: 顤
Rust:
let c = '\u{9864}';
println!("{}", c); // Output: 顤
Go:
char := '\u9864'
fmt.Printf("%c\n", char) // Output: 顤
CSS:
/* CSS content property */
.element::before {
content: "\009864"; /* 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%A1%A4
MD5:
647083cb0424c733bf02a6ffeacaa4ab
SHA1:
40301bdc3579f92b7ae780ea8e75ce6172822ce8
Base64:
6aGk