C:
char c = '\u9911';
printf("%c\n", c); // Output: 餑
JavaScript:
const char = '\u9911';
console.log(char); // Output: 餑
Java:
char c = '\u9911';
System.out.println(c); // Output: 餑
JSON:
{"text": "\u9911"} // Value: 餑
Python:
char = '\u9911'
print(char) # Output: 餑
Perl:
my $char = "\x{9911}";
print $char; # Output: 餑
PHP:
$char = "\x{9911}";
echo $char; // Output: 餑
Ruby:
char = "\u{9911}"
puts char # Output: 餑
Rust:
let c = '\u{9911}';
println!("{}", c); // Output: 餑
Go:
char := '\u9911'
fmt.Printf("%c\n", char) // Output: 餑
CSS:
/* CSS content property */
.element::before {
content: "\009911"; /* 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%91
MD5:
380e691faef20753b5759beff545e1e1
SHA1:
9b61eeead5fcdf63b78ca80066b4c9eaecfc1196
Base64:
6aSR