ASCII 221
Character 221 (Ý)
Latin-1 Supplement
Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.
All encodings at a glance
| Decimal | 221 |
| Hexadecimal | 0xDD |
| Octal | 0335 |
| Binary | 11011101 |
| HTML numeric entity | Ý |
| URL encoding | %DD |
| UTF-8 bytes | 0xC3 0x9D |
Code snippets
JavaScript
String.fromCharCode(221); // "Ý"
221.toString(16); // "dd"Python
chr(221) # control char Ý
ord(chr(221)) # 221
hex(221) # '0xdd'HTML
Ý <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00DD. In UTF-8 it encodes to the byte sequence 0xC3 0x9D. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xDD, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.