C:
char c = '\u9997';
printf("%c\n", c); // Output: 馗
JavaScript:
const char = '\u9997';
console.log(char); // Output: 馗
Java:
char c = '\u9997';
System.out.println(c); // Output: 馗
JSON:
{"text": "\u9997"} // Value: 馗
Python:
char = '\u9997'
print(char) # Output: 馗
Perl:
my $char = "\x{9997}";
print $char; # Output: 馗
PHP:
$char = "\x{9997}";
echo $char; // Output: 馗
Ruby:
char = "\u{9997}"
puts char # Output: 馗
Rust:
let c = '\u{9997}';
println!("{}", c); // Output: 馗
Go:
char := '\u9997'
fmt.Printf("%c\n", char) // Output: 馗
CSS:
/* CSS content property */
.element::before {
content: "\009997"; /* 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%97
MD5:
4de07aadcecc7bf224ff79b96963b0de
SHA1:
3a5331f95bea73b7ed1e61b910a61b34b9e17440
Base64:
6aaX