C:
char c = '\u9885';
printf("%c\n", c); // Output: 颅
JavaScript:
const char = '\u9885';
console.log(char); // Output: 颅
Java:
char c = '\u9885';
System.out.println(c); // Output: 颅
JSON:
{"text": "\u9885"} // Value: 颅
Python:
char = '\u9885'
print(char) # Output: 颅
Perl:
my $char = "\x{9885}";
print $char; # Output: 颅
PHP:
$char = "\x{9885}";
echo $char; // Output: 颅
Ruby:
char = "\u{9885}"
puts char # Output: 颅
Rust:
let c = '\u{9885}';
println!("{}", c); // Output: 颅
Go:
char := '\u9885'
fmt.Printf("%c\n", char) // Output: 颅
CSS:
/* CSS content property */
.element::before {
content: "\009885"; /* 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%85
MD5:
7db4114552e51fd5eed70e2f24c6aacb
SHA1:
200d43e4f27a9d92f0e5430313fc8849be4f5b9f
Base64:
6aKF