DevKits

ASCII 208

Character 208 (Ð)

Latin-1 Supplement

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

Common uses & context

Decimal 208 (0xD0) is Character 208, part of the Latin-1 Supplement (128–255). Latin capital letter Ð. Common in Western European languages (French, German, Spanish, Portuguese). It renders as 'Ð' and its binary byte is 11010000.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Ð' is the single byte 0xD0. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x90. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00D0, and in HTML you can write it as Ð.

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) -->

Programming notes

  • Single byte 0xD0 in Latin-1, but the multi-byte sequence 0xC3 0x90 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00D0; HTML numeric entity &#208;.
  • If 'Ð' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

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.

Frequently asked questions

What character is ASCII code 208?

ASCII code 208 is the character 'Ð' (Character 208). In hexadecimal it is 0xD0, in octal 0320, and in binary 11010000.

What is 0xD0 in ASCII?

Hexadecimal 0xD0 equals decimal 208, which is the character 'Ð' (Character 208). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xD0 = 208) and look up that code point.

How do I write the character with code 208 in code?

In JavaScript use String.fromCharCode(208); in Python use chr(208); in HTML use the numeric entity &#208;. In a URL it is percent-encoded as %D0, and in UTF-8 it is stored as the byte sequence 0xC3 0x90.

Is 'Ð' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'Ð' is code 208, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xD0 in Latin-1 but a multi-byte sequence (0xC3 0x90) in UTF-8.

Nearby codes

Encode & convert this character