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