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