DevKits

ASCII 208

Character 208 (Ð)

Latin-1 Supplement

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

All encodings at a glance

Decimal208
Hexadecimal0xD0
Octal0320
Binary11010000
HTML numeric entityÐ
URL encoding%D0
UTF-8 bytes0xC3 0x90

Code snippets

JavaScript

String.fromCharCode(208); // "Ð"
208.toString(16); // "d0"

Python

chr(208)           # control char Ð
ord(chr(208))      # 208
hex(208)           # '0xd0'

HTML

&#208;   <!-- numeric entity (no named entity for this character) -->

Unicode & UTF-8 note

In Unicode this is U+00D0. In UTF-8 it encodes to the byte sequence 0xC3 0x90. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD0, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.

Nearby codes