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