C:
char c = '\u7582';
printf("%c\n", c); // Output: 疂
JavaScript:
const char = '\u7582';
console.log(char); // Output: 疂
Java:
char c = '\u7582';
System.out.println(c); // Output: 疂
JSON:
{"text": "\u7582"} // Value: 疂
Python:
char = '\u7582'
print(char) # Output: 疂
Perl:
my $char = "\x{7582}";
print $char; # Output: 疂
PHP:
$char = "\x{7582}";
echo $char; // Output: 疂
Ruby:
char = "\u{7582}"
puts char # Output: 疂
Rust:
let c = '\u{7582}';
println!("{}", c); // Output: 疂
Go:
char := '\u7582'
fmt.Printf("%c\n", char) // Output: 疂
CSS:
/* CSS content property */
.element::before {
content: "\007582"; /* 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%82
MD5:
7a478db9ffec87b41c26036743e3da2b
SHA1:
126cfa5fbdfb5e9253b18edbd5951c4a49f120f8
Base64:
55aC