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