DevKits

ASCII 207

Character 207 (Ï)

Latin-1 Supplement

Latin capital letter Ï. Common in Western European languages (French, German, Spanish, Portuguese).

All encodings at a glance

Decimal207
Hexadecimal0xCF
Octal0317
Binary11001111
HTML numeric entityÏ
URL encoding%CF
UTF-8 bytes0xC3 0x8F

Code snippets

JavaScript

String.fromCharCode(207); // "Ï"
207.toString(16); // "cf"

Python

chr(207)           # control char Ï
ord(chr(207))      # 207
hex(207)           # '0xcf'

HTML

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

Nearby codes