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