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