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