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