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