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