C:
char c = '\u8753';
printf("%c\n", c); // Output: 蝓
JavaScript:
const char = '\u8753';
console.log(char); // Output: 蝓
Java:
char c = '\u8753';
System.out.println(c); // Output: 蝓
JSON:
{"text": "\u8753"} // Value: 蝓
Python:
char = '\u8753'
print(char) # Output: 蝓
Perl:
my $char = "\x{8753}";
print $char; # Output: 蝓
PHP:
$char = "\x{8753}";
echo $char; // Output: 蝓
Ruby:
char = "\u{8753}"
puts char # Output: 蝓
Rust:
let c = '\u{8753}';
println!("{}", c); // Output: 蝓
Go:
char := '\u8753'
fmt.Printf("%c\n", char) // Output: 蝓
CSS:
/* CSS content property */
.element::before {
content: "\008753"; /* 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%93
MD5:
f739413c6c6c959d8f918ba68c8dac0c
SHA1:
5b0dc9e2a86ef1e0780e4f751911b3c6da990e27
Base64:
6J2T