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