DevKits

ASCII 218

Character 218 (Ú)

Latin-1 Supplement

Latin capital letter with diacritic. Used in Northern European and Icelandic alphabets.

All encodings at a glance

Decimal218
Hexadecimal0xDA
Octal0332
Binary11011010
HTML numeric entityÚ
URL encoding%DA
UTF-8 bytes0xC3 0x9A

Code snippets

JavaScript

String.fromCharCode(218); // "Ú"
218.toString(16); // "da"

Python

chr(218)           # control char Ú
ord(chr(218))      # 218
hex(218)           # '0xda'

HTML

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

Nearby codes