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