C:
char c = '\u8685';
printf("%c\n", c); // Output: 蚅
JavaScript:
const char = '\u8685';
console.log(char); // Output: 蚅
Java:
char c = '\u8685';
System.out.println(c); // Output: 蚅
JSON:
{"text": "\u8685"} // Value: 蚅
Python:
char = '\u8685'
print(char) # Output: 蚅
Perl:
my $char = "\x{8685}";
print $char; # Output: 蚅
PHP:
$char = "\x{8685}";
echo $char; // Output: 蚅
Ruby:
char = "\u{8685}"
puts char # Output: 蚅
Rust:
let c = '\u{8685}';
println!("{}", c); // Output: 蚅
Go:
char := '\u8685'
fmt.Printf("%c\n", char) // Output: 蚅
CSS:
/* CSS content property */
.element::before {
content: "\008685"; /* 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%9A%85
MD5:
517bc72e3c11a7aaf95359e254205d00
SHA1:
212f051696ffb3f7a308ca5a96722fdfb13757e3
Base64:
6JqF