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