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