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