DevKits

ASCII 221

Character 221 (Ý)

Latin-1 Supplement

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

All encodings at a glance

Decimal221
Hexadecimal0xDD
Octal0335
Binary11011101
HTML numeric entityÝ
URL encoding%DD
UTF-8 bytes0xC3 0x9D

Code snippets

JavaScript

String.fromCharCode(221); // "Ý"
221.toString(16); // "dd"

Python

chr(221)           # control char Ý
ord(chr(221))      # 221
hex(221)           # '0xdd'

HTML

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

Nearby codes