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