C:
char c = '\u8718';
printf("%c\n", c); // Output: 蜘
JavaScript:
const char = '\u8718';
console.log(char); // Output: 蜘
Java:
char c = '\u8718';
System.out.println(c); // Output: 蜘
JSON:
{"text": "\u8718"} // Value: 蜘
Python:
char = '\u8718'
print(char) # Output: 蜘
Perl:
my $char = "\x{8718}";
print $char; # Output: 蜘
PHP:
$char = "\x{8718}";
echo $char; // Output: 蜘
Ruby:
char = "\u{8718}"
puts char # Output: 蜘
Rust:
let c = '\u{8718}';
println!("{}", c); // Output: 蜘
Go:
char := '\u8718'
fmt.Printf("%c\n", char) // Output: 蜘
CSS:
/* CSS content property */
.element::before {
content: "\008718"; /* 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%9C%98
MD5:
e9ffe55b87f00cd9cabec02921df16c8
SHA1:
3b4ccb2bcab43d07f11e42307ce18ff4c69e2f66
Base64:
6JyY