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