C:
char c = '\u9B43';
printf("%c\n", c); // Output: 魃
JavaScript:
const char = '\u9B43';
console.log(char); // Output: 魃
Java:
char c = '\u9B43';
System.out.println(c); // Output: 魃
JSON:
{"text": "\u9B43"} // Value: 魃
Python:
char = '\u9B43'
print(char) # Output: 魃
Perl:
my $char = "\x{9B43}";
print $char; # Output: 魃
PHP:
$char = "\x{9B43}";
echo $char; // Output: 魃
Ruby:
char = "\u{9B43}"
puts char # Output: 魃
Rust:
let c = '\u{9B43}';
println!("{}", c); // Output: 魃
Go:
char := '\u9B43'
fmt.Printf("%c\n", char) // Output: 魃
CSS:
/* CSS content property */
.element::before {
content: "\009B43"; /* 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=%E9%AD%83
MD5:
d52fad42500f8cc76ac4fc52a4e35e58
SHA1:
e8284e0bde7c7158e1e76cfe330d3aa66c2a073b
Base64:
6a2D