C:
char c = '\u75B7';
printf("%c\n", c); // Output: 疷
JavaScript:
const char = '\u75B7';
console.log(char); // Output: 疷
Java:
char c = '\u75B7';
System.out.println(c); // Output: 疷
JSON:
{"text": "\u75B7"} // Value: 疷
Python:
char = '\u75B7'
print(char) # Output: 疷
Perl:
my $char = "\x{75B7}";
print $char; # Output: 疷
PHP:
$char = "\x{75B7}";
echo $char; // Output: 疷
Ruby:
char = "\u{75B7}"
puts char # Output: 疷
Rust:
let c = '\u{75B7}';
println!("{}", c); // Output: 疷
Go:
char := '\u75B7'
fmt.Printf("%c\n", char) // Output: 疷
CSS:
/* CSS content property */
.element::before {
content: "\0075B7"; /* 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%B7
MD5:
0ae1019400dd7c361805dfe898cbf934
SHA1:
b36a37bddc204bef2cff6a7a132a8dba6b9d58c4
Base64:
55a3