C:
char c = '\u9913';
printf("%c\n", c); // Output: 餓
JavaScript:
const char = '\u9913';
console.log(char); // Output: 餓
Java:
char c = '\u9913';
System.out.println(c); // Output: 餓
JSON:
{"text": "\u9913"} // Value: 餓
Python:
char = '\u9913'
print(char) # Output: 餓
Perl:
my $char = "\x{9913}";
print $char; # Output: 餓
PHP:
$char = "\x{9913}";
echo $char; // Output: 餓
Ruby:
char = "\u{9913}"
puts char # Output: 餓
Rust:
let c = '\u{9913}';
println!("{}", c); // Output: 餓
Go:
char := '\u9913'
fmt.Printf("%c\n", char) // Output: 餓
CSS:
/* CSS content property */
.element::before {
content: "\009913"; /* 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%93
MD5:
463f0e57ce601cff8b5fa69660dd464d
SHA1:
9a478b57a22a05e1de88e704a127cb520938f9f8
Base64:
6aST