C:
char c = '\u9827';
printf("%c\n", c); // Output: 頧
JavaScript:
const char = '\u9827';
console.log(char); // Output: 頧
Java:
char c = '\u9827';
System.out.println(c); // Output: 頧
JSON:
{"text": "\u9827"} // Value: 頧
Python:
char = '\u9827'
print(char) # Output: 頧
Perl:
my $char = "\x{9827}";
print $char; # Output: 頧
PHP:
$char = "\x{9827}";
echo $char; // Output: 頧
Ruby:
char = "\u{9827}"
puts char # Output: 頧
Rust:
let c = '\u{9827}';
println!("{}", c); // Output: 頧
Go:
char := '\u9827'
fmt.Printf("%c\n", char) // Output: 頧
CSS:
/* CSS content property */
.element::before {
content: "\009827"; /* 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%A7
MD5:
44afb9242d99685a468c22b18b943602
SHA1:
bb6dd376d7366fe0dfb97bb89d32f1b4580563c7
Base64:
6aCn