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