C:
char c = '\u9992';
printf("%c\n", c); // Output: 馒
JavaScript:
const char = '\u9992';
console.log(char); // Output: 馒
Java:
char c = '\u9992';
System.out.println(c); // Output: 馒
JSON:
{"text": "\u9992"} // Value: 馒
Python:
char = '\u9992'
print(char) # Output: 馒
Perl:
my $char = "\x{9992}";
print $char; # Output: 馒
PHP:
$char = "\x{9992}";
echo $char; // Output: 馒
Ruby:
char = "\u{9992}"
puts char # Output: 馒
Rust:
let c = '\u{9992}';
println!("{}", c); // Output: 馒
Go:
char := '\u9992'
fmt.Printf("%c\n", char) // Output: 馒
CSS:
/* CSS content property */
.element::before {
content: "\009992"; /* 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%A6%92
MD5:
7eeb2a4c0ec0c60a93019986c3a71568
SHA1:
30a661ea909a50c05df0b1dd5c1e70238ce0eeec
Base64:
6aaS