C:
char c = '\u9990';
printf("%c\n", c); // Output: 馐
JavaScript:
const char = '\u9990';
console.log(char); // Output: 馐
Java:
char c = '\u9990';
System.out.println(c); // Output: 馐
JSON:
{"text": "\u9990"} // Value: 馐
Python:
char = '\u9990'
print(char) # Output: 馐
Perl:
my $char = "\x{9990}";
print $char; # Output: 馐
PHP:
$char = "\x{9990}";
echo $char; // Output: 馐
Ruby:
char = "\u{9990}"
puts char # Output: 馐
Rust:
let c = '\u{9990}';
println!("{}", c); // Output: 馐
Go:
char := '\u9990'
fmt.Printf("%c\n", char) // Output: 馐
CSS:
/* CSS content property */
.element::before {
content: "\009990"; /* 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%90
MD5:
079086e0f3ebf7b16ecfea4c3f81a697
SHA1:
906cbcfe4b3cbfca7aab4c73d7a5ed896e9fdf17
Base64:
6aaQ