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