C:
char c = '\u9994';
printf("%c\n", c); // Output: 馔
JavaScript:
const char = '\u9994';
console.log(char); // Output: 馔
Java:
char c = '\u9994';
System.out.println(c); // Output: 馔
JSON:
{"text": "\u9994"} // Value: 馔
Python:
char = '\u9994'
print(char) # Output: 馔
Perl:
my $char = "\x{9994}";
print $char; # Output: 馔
PHP:
$char = "\x{9994}";
echo $char; // Output: 馔
Ruby:
char = "\u{9994}"
puts char # Output: 馔
Rust:
let c = '\u{9994}';
println!("{}", c); // Output: 馔
Go:
char := '\u9994'
fmt.Printf("%c\n", char) // Output: 馔
CSS:
/* CSS content property */
.element::before {
content: "\009994"; /* 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%94
MD5:
dead0fc7623c4c8b504207c9465b8a42
SHA1:
dfc973223c4632d6ec12ee65e3145bebc5bfecf1
Base64:
6aaU