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