ASCII 241
Character 241 (ñ)
Latin-1 Supplement
Latin small letter ñ. Common in Western European languages.
All encodings at a glance
| Decimal | 241 |
| Hexadecimal | 0xF1 |
| Octal | 0361 |
| Binary | 11110001 |
| HTML numeric entity | ñ |
| URL encoding | %F1 |
| UTF-8 bytes | 0xC3 0xB1 |
Code snippets
JavaScript
String.fromCharCode(241); // "ñ"
241.toString(16); // "f1"Python
chr(241) # control char ñ
ord(chr(241)) # 241
hex(241) # '0xf1'HTML
ñ <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00F1. In UTF-8 it encodes to the byte sequence 0xC3 0xB1. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF1, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.