C:
char c = '\u8686';
printf("%c\n", c); // Output: 蚆
JavaScript:
const char = '\u8686';
console.log(char); // Output: 蚆
Java:
char c = '\u8686';
System.out.println(c); // Output: 蚆
JSON:
{"text": "\u8686"} // Value: 蚆
Python:
char = '\u8686'
print(char) # Output: 蚆
Perl:
my $char = "\x{8686}";
print $char; # Output: 蚆
PHP:
$char = "\x{8686}";
echo $char; // Output: 蚆
Ruby:
char = "\u{8686}"
puts char # Output: 蚆
Rust:
let c = '\u{8686}';
println!("{}", c); // Output: 蚆
Go:
char := '\u8686'
fmt.Printf("%c\n", char) // Output: 蚆
CSS:
/* CSS content property */
.element::before {
content: "\008686"; /* 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%86
MD5:
38b783cb14a35506ece5fc8d711357ae
SHA1:
dddbc57a71bfd918bcaf151057415e97ccc426b6
Base64:
6JqG