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