C:
char c = '\u7096';
printf("%c\n", c); // Output: 炖
JavaScript:
const char = '\u7096';
console.log(char); // Output: 炖
Java:
char c = '\u7096';
System.out.println(c); // Output: 炖
JSON:
{"text": "\u7096"} // Value: 炖
Python:
char = '\u7096'
print(char) # Output: 炖
Perl:
my $char = "\x{7096}";
print $char; # Output: 炖
PHP:
$char = "\x{7096}";
echo $char; // Output: 炖
Ruby:
char = "\u{7096}"
puts char # Output: 炖
Rust:
let c = '\u{7096}';
println!("{}", c); // Output: 炖
Go:
char := '\u7096'
fmt.Printf("%c\n", char) // Output: 炖
CSS:
/* CSS content property */
.element::before {
content: "\007096"; /* 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=%E7%82%96
MD5:
d10878b066bdd3fd6506402c838b8d38
SHA1:
bf2a7cd55a90312295d7fc10dd5d4ddacaaa740a
Base64:
54KW