C:
char c = '\u7592';
printf("%c\n", c); // Output: 疒
JavaScript:
const char = '\u7592';
console.log(char); // Output: 疒
Java:
char c = '\u7592';
System.out.println(c); // Output: 疒
JSON:
{"text": "\u7592"} // Value: 疒
Python:
char = '\u7592'
print(char) # Output: 疒
Perl:
my $char = "\x{7592}";
print $char; # Output: 疒
PHP:
$char = "\x{7592}";
echo $char; // Output: 疒
Ruby:
char = "\u{7592}"
puts char # Output: 疒
Rust:
let c = '\u{7592}';
println!("{}", c); // Output: 疒
Go:
char := '\u7592'
fmt.Printf("%c\n", char) // Output: 疒
CSS:
/* CSS content property */
.element::before {
content: "\007592"; /* 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%92
MD5:
f70f1f9c8d00348c1c7107a24710ccfb
SHA1:
451b1676f299763f69a973e7cd5c4e179ed9ef0c
Base64:
55aS