C:
char c = '\u9822';
printf("%c\n", c); // Output: 頢
JavaScript:
const char = '\u9822';
console.log(char); // Output: 頢
Java:
char c = '\u9822';
System.out.println(c); // Output: 頢
JSON:
{"text": "\u9822"} // Value: 頢
Python:
char = '\u9822'
print(char) # Output: 頢
Perl:
my $char = "\x{9822}";
print $char; # Output: 頢
PHP:
$char = "\x{9822}";
echo $char; // Output: 頢
Ruby:
char = "\u{9822}"
puts char # Output: 頢
Rust:
let c = '\u{9822}';
println!("{}", c); // Output: 頢
Go:
char := '\u9822'
fmt.Printf("%c\n", char) // Output: 頢
CSS:
/* CSS content property */
.element::before {
content: "\009822"; /* 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%A2
MD5:
d8cc712e4ca1383c954b59839729147c
SHA1:
ba49790b538f674cbff04cf309efbfe04ed6e2b5
Base64:
6aCi