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