C:
char c = '\u98DF';
printf("%c\n", c); // Output: 食
JavaScript:
const char = '\u98DF';
console.log(char); // Output: 食
Java:
char c = '\u98DF';
System.out.println(c); // Output: 食
JSON:
{"text": "\u98DF"} // Value: 食
Python:
char = '\u98DF'
print(char) # Output: 食
Perl:
my $char = "\x{98DF}";
print $char; # Output: 食
PHP:
$char = "\x{98DF}";
echo $char; // Output: 食
Ruby:
char = "\u{98DF}"
puts char # Output: 食
Rust:
let c = '\u{98DF}';
println!("{}", c); // Output: 食
Go:
char := '\u98DF'
fmt.Printf("%c\n", char) // Output: 食
CSS:
/* CSS content property */
.element::before {
content: "\0098DF"; /* 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%A3%9F
MD5:
24bbbad0a65a819a077c429adf606ba4
SHA1:
d46696735b6a09ff407bfc1a9407e008840db9c9
Base64:
6aOf