C:
char c = '\u7594';
printf("%c\n", c); // Output: 疔
JavaScript:
const char = '\u7594';
console.log(char); // Output: 疔
Java:
char c = '\u7594';
System.out.println(c); // Output: 疔
JSON:
{"text": "\u7594"} // Value: 疔
Python:
char = '\u7594'
print(char) # Output: 疔
Perl:
my $char = "\x{7594}";
print $char; # Output: 疔
PHP:
$char = "\x{7594}";
echo $char; // Output: 疔
Ruby:
char = "\u{7594}"
puts char # Output: 疔
Rust:
let c = '\u{7594}';
println!("{}", c); // Output: 疔
Go:
char := '\u7594'
fmt.Printf("%c\n", char) // Output: 疔
CSS:
/* CSS content property */
.element::before {
content: "\007594"; /* 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%94
MD5:
94c05e33049467538520400093180a2c
SHA1:
ef841f2e3c06be1784fe1118533b6afefe169e3f
Base64:
55aU