C:
char c = '\u8750';
printf("%c\n", c); // Output: 蝐
JavaScript:
const char = '\u8750';
console.log(char); // Output: 蝐
Java:
char c = '\u8750';
System.out.println(c); // Output: 蝐
JSON:
{"text": "\u8750"} // Value: 蝐
Python:
char = '\u8750'
print(char) # Output: 蝐
Perl:
my $char = "\x{8750}";
print $char; # Output: 蝐
PHP:
$char = "\x{8750}";
echo $char; // Output: 蝐
Ruby:
char = "\u{8750}"
puts char # Output: 蝐
Rust:
let c = '\u{8750}';
println!("{}", c); // Output: 蝐
Go:
char := '\u8750'
fmt.Printf("%c\n", char) // Output: 蝐
CSS:
/* CSS content property */
.element::before {
content: "\008750"; /* 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%90
MD5:
a2a437b1a39805c1aededb9217552d44
SHA1:
8c168bad2aa481ac92fc3cc32b43a6f2f63b2c99
Base64:
6J2Q