C:
char c = '\u8743';
printf("%c\n", c); // Output: 蝃
JavaScript:
const char = '\u8743';
console.log(char); // Output: 蝃
Java:
char c = '\u8743';
System.out.println(c); // Output: 蝃
JSON:
{"text": "\u8743"} // Value: 蝃
Python:
char = '\u8743'
print(char) # Output: 蝃
Perl:
my $char = "\x{8743}";
print $char; # Output: 蝃
PHP:
$char = "\x{8743}";
echo $char; // Output: 蝃
Ruby:
char = "\u{8743}"
puts char # Output: 蝃
Rust:
let c = '\u{8743}';
println!("{}", c); // Output: 蝃
Go:
char := '\u8743'
fmt.Printf("%c\n", char) // Output: 蝃
CSS:
/* CSS content property */
.element::before {
content: "\008743"; /* 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=%E8%9D%83
MD5:
d053cae06e936ed4b468794e779b1679
SHA1:
bb63034b02f1748b4935b15baffc2f589b9875e1
Base64:
6J2D