C:
char c = '\u8815';
printf("%c\n", c); // Output: 蠕
JavaScript:
const char = '\u8815';
console.log(char); // Output: 蠕
Java:
char c = '\u8815';
System.out.println(c); // Output: 蠕
JSON:
{"text": "\u8815"} // Value: 蠕
Python:
char = '\u8815'
print(char) # Output: 蠕
Perl:
my $char = "\x{8815}";
print $char; # Output: 蠕
PHP:
$char = "\x{8815}";
echo $char; // Output: 蠕
Ruby:
char = "\u{8815}"
puts char # Output: 蠕
Rust:
let c = '\u{8815}';
println!("{}", c); // Output: 蠕
Go:
char := '\u8815'
fmt.Printf("%c\n", char) // Output: 蠕
CSS:
/* CSS content property */
.element::before {
content: "\008815"; /* 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%A0%95
MD5:
6f81015aa33f27c3b2e41d1c18080a66
SHA1:
bf20bfc942ab1dea3359812193e46e2fcf69e389
Base64:
6KCV