C:
char c = '\u8680';
printf("%c\n", c); // Output: 蚀
JavaScript:
const char = '\u8680';
console.log(char); // Output: 蚀
Java:
char c = '\u8680';
System.out.println(c); // Output: 蚀
JSON:
{"text": "\u8680"} // Value: 蚀
Python:
char = '\u8680'
print(char) # Output: 蚀
Perl:
my $char = "\x{8680}";
print $char; # Output: 蚀
PHP:
$char = "\x{8680}";
echo $char; // Output: 蚀
Ruby:
char = "\u{8680}"
puts char # Output: 蚀
Rust:
let c = '\u{8680}';
println!("{}", c); // Output: 蚀
Go:
char := '\u8680'
fmt.Printf("%c\n", char) // Output: 蚀
CSS:
/* CSS content property */
.element::before {
content: "\008680"; /* 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%80
MD5:
1ebe73016f455c998de1d4ef5b2e1a48
SHA1:
307a04e6b9520ae5b5a5e54008dbb7902103abc6
Base64:
6JqA