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