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