C:
char c = '\u7597';
printf("%c\n", c); // Output: 疗
JavaScript:
const char = '\u7597';
console.log(char); // Output: 疗
Java:
char c = '\u7597';
System.out.println(c); // Output: 疗
JSON:
{"text": "\u7597"} // Value: 疗
Python:
char = '\u7597'
print(char) # Output: 疗
Perl:
my $char = "\x{7597}";
print $char; # Output: 疗
PHP:
$char = "\x{7597}";
echo $char; // Output: 疗
Ruby:
char = "\u{7597}"
puts char # Output: 疗
Rust:
let c = '\u{7597}';
println!("{}", c); // Output: 疗
Go:
char := '\u7597'
fmt.Printf("%c\n", char) // Output: 疗
CSS:
/* CSS content property */
.element::before {
content: "\007597"; /* 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%96%97
MD5:
43fa539b1c894916ffd06bf9fe965cc5
SHA1:
249088df04c9af521a10292f560ade7c1da44f31
Base64:
55aX