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