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