C:
char c = '\u8764';
printf("%c\n", c); // Output: 蝤
JavaScript:
const char = '\u8764';
console.log(char); // Output: 蝤
Java:
char c = '\u8764';
System.out.println(c); // Output: 蝤
JSON:
{"text": "\u8764"} // Value: 蝤
Python:
char = '\u8764'
print(char) # Output: 蝤
Perl:
my $char = "\x{8764}";
print $char; # Output: 蝤
PHP:
$char = "\x{8764}";
echo $char; // Output: 蝤
Ruby:
char = "\u{8764}"
puts char # Output: 蝤
Rust:
let c = '\u{8764}';
println!("{}", c); // Output: 蝤
Go:
char := '\u8764'
fmt.Printf("%c\n", char) // Output: 蝤
CSS:
/* CSS content property */
.element::before {
content: "\008764"; /* 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%A4
MD5:
9241d0e4a31b63a8fa246e357f32b6ad
SHA1:
e53bee7b8fd5c4008e8e5fad1a55ba95733ff92b
Base64:
6J2k