C:
char c = '\u9904';
printf("%c\n", c); // Output: 餄
JavaScript:
const char = '\u9904';
console.log(char); // Output: 餄
Java:
char c = '\u9904';
System.out.println(c); // Output: 餄
JSON:
{"text": "\u9904"} // Value: 餄
Python:
char = '\u9904'
print(char) # Output: 餄
Perl:
my $char = "\x{9904}";
print $char; # Output: 餄
PHP:
$char = "\x{9904}";
echo $char; // Output: 餄
Ruby:
char = "\u{9904}"
puts char # Output: 餄
Rust:
let c = '\u{9904}';
println!("{}", c); // Output: 餄
Go:
char := '\u9904'
fmt.Printf("%c\n", char) // Output: 餄
CSS:
/* CSS content property */
.element::before {
content: "\009904"; /* 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%84
MD5:
d7c237de4be727871ad647d231d5bea0
SHA1:
0bd67faf0b5305c69b613e0aede8539a65697187
Base64:
6aSE