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