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