C:
char c = '\u8761';
printf("%c\n", c); // Output: 蝡
JavaScript:
const char = '\u8761';
console.log(char); // Output: 蝡
Java:
char c = '\u8761';
System.out.println(c); // Output: 蝡
JSON:
{"text": "\u8761"} // Value: 蝡
Python:
char = '\u8761'
print(char) # Output: 蝡
Perl:
my $char = "\x{8761}";
print $char; # Output: 蝡
PHP:
$char = "\x{8761}";
echo $char; // Output: 蝡
Ruby:
char = "\u{8761}"
puts char # Output: 蝡
Rust:
let c = '\u{8761}';
println!("{}", c); // Output: 蝡
Go:
char := '\u8761'
fmt.Printf("%c\n", char) // Output: 蝡
CSS:
/* CSS content property */
.element::before {
content: "\008761"; /* 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%A1
MD5:
ac2bf5c55873ef0272f1a3781e6eb53b
SHA1:
3d8ae4ef6061903002335d7969f45e697b79266f
Base64:
6J2h