C:
char c = '\u8710';
printf("%c\n", c); // Output: 蜐
JavaScript:
const char = '\u8710';
console.log(char); // Output: 蜐
Java:
char c = '\u8710';
System.out.println(c); // Output: 蜐
JSON:
{"text": "\u8710"} // Value: 蜐
Python:
char = '\u8710'
print(char) # Output: 蜐
Perl:
my $char = "\x{8710}";
print $char; # Output: 蜐
PHP:
$char = "\x{8710}";
echo $char; // Output: 蜐
Ruby:
char = "\u{8710}"
puts char # Output: 蜐
Rust:
let c = '\u{8710}';
println!("{}", c); // Output: 蜐
Go:
char := '\u8710'
fmt.Printf("%c\n", char) // Output: 蜐
CSS:
/* CSS content property */
.element::before {
content: "\008710"; /* 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%90
MD5:
6cb26aa7baa6432b1ce947a8afbb2237
SHA1:
e862223f0be688497b4a626e4f18d150045d9fc8
Base64:
6JyQ