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