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