C:
char c = '\u9907';
printf("%c\n", c); // Output: 餇
JavaScript:
const char = '\u9907';
console.log(char); // Output: 餇
Java:
char c = '\u9907';
System.out.println(c); // Output: 餇
JSON:
{"text": "\u9907"} // Value: 餇
Python:
char = '\u9907'
print(char) # Output: 餇
Perl:
my $char = "\x{9907}";
print $char; # Output: 餇
PHP:
$char = "\x{9907}";
echo $char; // Output: 餇
Ruby:
char = "\u{9907}"
puts char # Output: 餇
Rust:
let c = '\u{9907}';
println!("{}", c); // Output: 餇
Go:
char := '\u9907'
fmt.Printf("%c\n", char) // Output: 餇
CSS:
/* CSS content property */
.element::before {
content: "\009907"; /* 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%87
MD5:
98c8554c116af045dcc089f2b3de70f1
SHA1:
300af167d63ed6381487d2adfa2a2523724655fd
Base64:
6aSH