C:
char c = '\u87F2';
printf("%c\n", c); // Output: 蟲
JavaScript:
const char = '\u87F2';
console.log(char); // Output: 蟲
Java:
char c = '\u87F2';
System.out.println(c); // Output: 蟲
JSON:
{"text": "\u87F2"} // Value: 蟲
Python:
char = '\u87F2'
print(char) # Output: 蟲
Perl:
my $char = "\x{87F2}";
print $char; # Output: 蟲
PHP:
$char = "\x{87F2}";
echo $char; // Output: 蟲
Ruby:
char = "\u{87F2}"
puts char # Output: 蟲
Rust:
let c = '\u{87F2}';
println!("{}", c); // Output: 蟲
Go:
char := '\u87F2'
fmt.Printf("%c\n", char) // Output: 蟲
CSS:
/* CSS content property */
.element::before {
content: "\0087F2"; /* 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%B2
MD5:
e30759e1b60a7f040ae0837af77377d2
SHA1:
77ad82b51d9d5a6ee8c25b5144f997a54ad909ee
Base64:
6J+y