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