DevKits

ASCII 241

Character 241 (ñ)

Latin-1 Supplement

Latin small letter ñ. Common in Western European languages.

All encodings at a glance

Decimal241
Hexadecimal0xF1
Octal0361
Binary11110001
HTML numeric entityñ
URL encoding%F1
UTF-8 bytes0xC3 0xB1

Code snippets

JavaScript

String.fromCharCode(241); // "ñ"
241.toString(16); // "f1"

Python

chr(241)           # control char ñ
ord(chr(241))      # 241
hex(241)           # '0xf1'

HTML

&#241;   <!-- 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.

Nearby codes