DevKits

ASCII 209

Character 209 (Ñ)

Latin-1 Supplement

Latin capital letter Ñ. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal209
Hexadecimal0xD1
Octal0321
Binary11010001
HTML numeric entityÑ
URL encoding%D1
UTF-8 bytes0xC3 0x91

Code snippets

JavaScript

String.fromCharCode(209); // "Ñ"
209.toString(16); // "d1"

Python

chr(209)           # control char Ñ
ord(chr(209))      # 209
hex(209)           # '0xd1'

HTML

&#209;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00D1. In UTF-8 it encodes to the byte sequence 0xC3 0x91. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD1, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes