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