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