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