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