C:
char c = '\u8704';
printf("%c\n", c); // Output: 蜄
JavaScript:
const char = '\u8704';
console.log(char); // Output: 蜄
Java:
char c = '\u8704';
System.out.println(c); // Output: 蜄
JSON:
{"text": "\u8704"} // Value: 蜄
Python:
char = '\u8704'
print(char) # Output: 蜄
Perl:
my $char = "\x{8704}";
print $char; # Output: 蜄
PHP:
$char = "\x{8704}";
echo $char; // Output: 蜄
Ruby:
char = "\u{8704}"
puts char # Output: 蜄
Rust:
let c = '\u{8704}';
println!("{}", c); // Output: 蜄
Go:
char := '\u8704'
fmt.Printf("%c\n", char) // Output: 蜄
CSS:
/* CSS content property */
.element::before {
content: "\008704"; /* 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%84
MD5:
ba5bbee8c5ba054c5e6ce8452d457975
SHA1:
51817ee61371815c23d1fe04a6e3172bd122cd5c
Base64:
6JyE