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