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