C:
char c = '\u9920';
printf("%c\n", c); // Output: 餠
JavaScript:
const char = '\u9920';
console.log(char); // Output: 餠
Java:
char c = '\u9920';
System.out.println(c); // Output: 餠
JSON:
{"text": "\u9920"} // Value: 餠
Python:
char = '\u9920'
print(char) # Output: 餠
Perl:
my $char = "\x{9920}";
print $char; # Output: 餠
PHP:
$char = "\x{9920}";
echo $char; // Output: 餠
Ruby:
char = "\u{9920}"
puts char # Output: 餠
Rust:
let c = '\u{9920}';
println!("{}", c); // Output: 餠
Go:
char := '\u9920'
fmt.Printf("%c\n", char) // Output: 餠
CSS:
/* CSS content property */
.element::before {
content: "\009920"; /* 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%A0
MD5:
4618b8ec117a4858d4c978396feb1a7c
SHA1:
47674b66ee9b739bbc910f7e02cf38b5ec9c4dbf
Base64:
6aSg