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