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