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