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