C:
char c = '\u98EA';
printf("%c\n", c); // Output: 飪
JavaScript:
const char = '\u98EA';
console.log(char); // Output: 飪
Java:
char c = '\u98EA';
System.out.println(c); // Output: 飪
JSON:
{"text": "\u98EA"} // Value: 飪
Python:
char = '\u98EA'
print(char) # Output: 飪
Perl:
my $char = "\x{98EA}";
print $char; # Output: 飪
PHP:
$char = "\x{98EA}";
echo $char; // Output: 飪
Ruby:
char = "\u{98EA}"
puts char # Output: 飪
Rust:
let c = '\u{98EA}';
println!("{}", c); // Output: 飪
Go:
char := '\u98EA'
fmt.Printf("%c\n", char) // Output: 飪
CSS:
/* CSS content property */
.element::before {
content: "\0098EA"; /* 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%AA
MD5:
33e2e37bb385471286fab4308afb8e8b
SHA1:
150ac7483e501277f274e4cdd26b1dd8881bbfb7
Base64:
6aOq