C:
char c = '\u8701';
printf("%c\n", c); // Output: 蜁
JavaScript:
const char = '\u8701';
console.log(char); // Output: 蜁
Java:
char c = '\u8701';
System.out.println(c); // Output: 蜁
JSON:
{"text": "\u8701"} // Value: 蜁
Python:
char = '\u8701'
print(char) # Output: 蜁
Perl:
my $char = "\x{8701}";
print $char; # Output: 蜁
PHP:
$char = "\x{8701}";
echo $char; // Output: 蜁
Ruby:
char = "\u{8701}"
puts char # Output: 蜁
Rust:
let c = '\u{8701}';
println!("{}", c); // Output: 蜁
Go:
char := '\u8701'
fmt.Printf("%c\n", char) // Output: 蜁
CSS:
/* CSS content property */
.element::before {
content: "\008701"; /* 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%81
MD5:
c91c410763b1321f85b4e9510d0f68e1
SHA1:
2a72fd33ad7a8e94d71069f940ad9be43ed6cb3f
Base64:
6JyB