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