C:
char c = '\u8772';
printf("%c\n", c); // Output: 蝲
JavaScript:
const char = '\u8772';
console.log(char); // Output: 蝲
Java:
char c = '\u8772';
System.out.println(c); // Output: 蝲
JSON:
{"text": "\u8772"} // Value: 蝲
Python:
char = '\u8772'
print(char) # Output: 蝲
Perl:
my $char = "\x{8772}";
print $char; # Output: 蝲
PHP:
$char = "\x{8772}";
echo $char; // Output: 蝲
Ruby:
char = "\u{8772}"
puts char # Output: 蝲
Rust:
let c = '\u{8772}';
println!("{}", c); // Output: 蝲
Go:
char := '\u8772'
fmt.Printf("%c\n", char) // Output: 蝲
CSS:
/* CSS content property */
.element::before {
content: "\008772"; /* 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%B2
MD5:
ffbde12eccb4b956df5f05964c514e19
SHA1:
8b402f244d45046bcdb28f809c83e1ee357a25f3
Base64:
6J2y