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