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