C:
char c = '\u9981';
printf("%c\n", c); // Output: 馁
JavaScript:
const char = '\u9981';
console.log(char); // Output: 馁
Java:
char c = '\u9981';
System.out.println(c); // Output: 馁
JSON:
{"text": "\u9981"} // Value: 馁
Python:
char = '\u9981'
print(char) # Output: 馁
Perl:
my $char = "\x{9981}";
print $char; # Output: 馁
PHP:
$char = "\x{9981}";
echo $char; // Output: 馁
Ruby:
char = "\u{9981}"
puts char # Output: 馁
Rust:
let c = '\u{9981}';
println!("{}", c); // Output: 馁
Go:
char := '\u9981'
fmt.Printf("%c\n", char) // Output: 馁
CSS:
/* CSS content property */
.element::before {
content: "\009981"; /* 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%81
MD5:
2bca4b0418221c8f8509d658d8aa2aed
SHA1:
bf021f68f11c69594dd6698059575bff926450a4
Base64:
6aaB