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