C:
char c = '\u87CE';
printf("%c\n", c); // Output: 蟎
JavaScript:
const char = '\u87CE';
console.log(char); // Output: 蟎
Java:
char c = '\u87CE';
System.out.println(c); // Output: 蟎
JSON:
{"text": "\u87CE"} // Value: 蟎
Python:
char = '\u87CE'
print(char) # Output: 蟎
Perl:
my $char = "\x{87CE}";
print $char; # Output: 蟎
PHP:
$char = "\x{87CE}";
echo $char; // Output: 蟎
Ruby:
char = "\u{87CE}"
puts char # Output: 蟎
Rust:
let c = '\u{87CE}';
println!("{}", c); // Output: 蟎
Go:
char := '\u87CE'
fmt.Printf("%c\n", char) // Output: 蟎
CSS:
/* CSS content property */
.element::before {
content: "\0087CE"; /* 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%9F%8E
MD5:
aabfb25f05be0f928ff4828a80c77d54
SHA1:
db5f1ebdf243d6a321fce0d51aa2b53807df7139
Base64:
6J+O