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