C:
char c = '\u9900';
printf("%c\n", c); // Output: 餀
JavaScript:
const char = '\u9900';
console.log(char); // Output: 餀
Java:
char c = '\u9900';
System.out.println(c); // Output: 餀
JSON:
{"text": "\u9900"} // Value: 餀
Python:
char = '\u9900'
print(char) # Output: 餀
Perl:
my $char = "\x{9900}";
print $char; # Output: 餀
PHP:
$char = "\x{9900}";
echo $char; // Output: 餀
Ruby:
char = "\u{9900}"
puts char # Output: 餀
Rust:
let c = '\u{9900}';
println!("{}", c); // Output: 餀
Go:
char := '\u9900'
fmt.Printf("%c\n", char) // Output: 餀
CSS:
/* CSS content property */
.element::before {
content: "\009900"; /* 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%80
MD5:
0986cff52f43586d222cefac969c7524
SHA1:
87aa712347fdb97a8757a57665d1cd5cb8a5ac40
Base64:
6aSA