C:
char c = '\u8805';
printf("%c\n", c); // Output: 蠅
JavaScript:
const char = '\u8805';
console.log(char); // Output: 蠅
Java:
char c = '\u8805';
System.out.println(c); // Output: 蠅
JSON:
{"text": "\u8805"} // Value: 蠅
Python:
char = '\u8805'
print(char) # Output: 蠅
Perl:
my $char = "\x{8805}";
print $char; # Output: 蠅
PHP:
$char = "\x{8805}";
echo $char; // Output: 蠅
Ruby:
char = "\u{8805}"
puts char # Output: 蠅
Rust:
let c = '\u{8805}';
println!("{}", c); // Output: 蠅
Go:
char := '\u8805'
fmt.Printf("%c\n", char) // Output: 蠅
CSS:
/* CSS content property */
.element::before {
content: "\008805"; /* 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%85
MD5:
19958098b256dbb9aeb1986f4b16c6ca
SHA1:
e2f91b14c39ca8e4af4cf96467444fb339491494
Base64:
6KCF