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