C:
char c = '\u9998';
printf("%c\n", c); // Output: 馘
JavaScript:
const char = '\u9998';
console.log(char); // Output: 馘
Java:
char c = '\u9998';
System.out.println(c); // Output: 馘
JSON:
{"text": "\u9998"} // Value: 馘
Python:
char = '\u9998'
print(char) # Output: 馘
Perl:
my $char = "\x{9998}";
print $char; # Output: 馘
PHP:
$char = "\x{9998}";
echo $char; // Output: 馘
Ruby:
char = "\u{9998}"
puts char # Output: 馘
Rust:
let c = '\u{9998}';
println!("{}", c); // Output: 馘
Go:
char := '\u9998'
fmt.Printf("%c\n", char) // Output: 馘
CSS:
/* CSS content property */
.element::before {
content: "\009998"; /* 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%A6%98
MD5:
5276a1326aaf8b29b3b1ac34b205b773
SHA1:
2fdfa4fd51b8344354da96433e20e2d67ae95cec
Base64:
6aaY