ASCII 207
Character 207 (Ï)
Latin-1 Supplement
Latin capital letter Ï. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 207 |
| Hexadecimal | 0xCF |
| Octal | 0317 |
| Binary | 11001111 |
| HTML numeric entity | Ï |
| URL encoding | %CF |
| UTF-8 bytes | 0xC3 0x8F |
Code snippets
JavaScript
String.fromCharCode(207); // "Ï"
207.toString(16); // "cf"Python
chr(207) # control char Ï
ord(chr(207)) # 207
hex(207) # '0xcf'HTML
Ï <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00CF. In UTF-8 it encodes to the byte sequence 0xC3 0x8F. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xCF, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.