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