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