C:
char c = '\u9905';
printf("%c\n", c); // Output: 餅
JavaScript:
const char = '\u9905';
console.log(char); // Output: 餅
Java:
char c = '\u9905';
System.out.println(c); // Output: 餅
JSON:
{"text": "\u9905"} // Value: 餅
Python:
char = '\u9905'
print(char) # Output: 餅
Perl:
my $char = "\x{9905}";
print $char; # Output: 餅
PHP:
$char = "\x{9905}";
echo $char; // Output: 餅
Ruby:
char = "\u{9905}"
puts char # Output: 餅
Rust:
let c = '\u{9905}';
println!("{}", c); // Output: 餅
Go:
char := '\u9905'
fmt.Printf("%c\n", char) // Output: 餅
CSS:
/* CSS content property */
.element::before {
content: "\009905"; /* 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%85
MD5:
87327a20017c0c95f2b06759bb888248
SHA1:
fc65764e3ed6d35f8f113f7e0b1b62be0eb368e3
Base64:
6aSF