I with acute
ASCII code 205 (0xCD) represents the I with acute character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.
| Decimal | 205 |
| Octal | 315 |
| Hexadecimal | 0xCD |
| Binary | 11001101 |
| HTML Code | Í |
| HTML Entity | Í |
| Unicode | U+00CD |
| Unicode Name | LATIN CAPITAL LETTER I WITH ACUTE |
| URL Escape | %CD |
| Quoted-Printable | =CD |
| UTF-8 (Hex) | C3 8D |
| Category | Extended — Latin Accented Letters |
// Character literal
let char = 'Í';
// Using char code
let char2 = String.fromCharCode(205);
// Unicode escape
let char3 = '\u00CD'; # Character literal
char = 'Í'
# Using chr()
char = chr(205)
# Using ord() to get code
code = ord('Í') # Returns 205 <!-- Direct character -->
Í
<!-- HTML entity (numeric) -->
Í
<!-- Hex entity -->
Í // Character literal
char c = 'Í';
// Using cast
char c2 = (char)205;
// To get code from char
int code = (int)'Í'; // Returns 205