C:
char c = '\u8744';
printf("%c\n", c); // Output: 蝄
JavaScript:
const char = '\u8744';
console.log(char); // Output: 蝄
Java:
char c = '\u8744';
System.out.println(c); // Output: 蝄
JSON:
{"text": "\u8744"} // Value: 蝄
Python:
char = '\u8744'
print(char) # Output: 蝄
Perl:
my $char = "\x{8744}";
print $char; # Output: 蝄
PHP:
$char = "\x{8744}";
echo $char; // Output: 蝄
Ruby:
char = "\u{8744}"
puts char # Output: 蝄
Rust:
let c = '\u{8744}';
println!("{}", c); // Output: 蝄
Go:
char := '\u8744'
fmt.Printf("%c\n", char) // Output: 蝄
CSS:
/* CSS content property */
.element::before {
content: "\008744"; /* 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%84
MD5:
3262f032a842810178a323b572318175
SHA1:
b32db73e00d6b6e565e493c5a1a0fdecf13949c7
Base64:
6J2E