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