ASCII 210
Character 210 (Ò)
Latin-1 Supplement
Latin capital letter Ò. Common in Western European languages (French, German, Spanish, Portuguese).
Common uses & context
Decimal 210 (0xD2) is Character 210, 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 11010010.
This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'Ò' is the single byte 0xD2. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0x92. 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+00D2, and in HTML you can write it as Ò.
All encodings at a glance
| Decimal | 210 |
| Hexadecimal | 0xD2 |
| Octal | 0322 |
| Binary | 11010010 |
| HTML numeric entity | Ò |
| URL encoding | %D2 |
| UTF-8 bytes | 0xC3 0x92 |
Code snippets
JavaScript
String.fromCharCode(210); // "Ò"
210.toString(16); // "d2"Python
chr(210) # control char Ò
ord(chr(210)) # 210
hex(210) # '0xd2'HTML
Ò <!-- numeric entity (no named entity for this character) -->Programming notes
- ▸Single byte 0xD2 in Latin-1, but the multi-byte sequence 0xC3 0x92 in UTF-8 — never assume one byte per character above code 127.
- ▸Unicode code point U+00D2; HTML numeric entity Ò.
- ▸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+00D2. In UTF-8 it encodes to the byte sequence 0xC3 0x92. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD2, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.
Frequently asked questions
What character is ASCII code 210?
ASCII code 210 is the character 'Ò' (Character 210). In hexadecimal it is 0xD2, in octal 0322, and in binary 11010010.
What is 0xD2 in ASCII?
Hexadecimal 0xD2 equals decimal 210, which is the character 'Ò' (Character 210). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xD2 = 210) and look up that code point.
How do I write the character with code 210 in code?
In JavaScript use String.fromCharCode(210); in Python use chr(210); in HTML use the numeric entity Ò. In a URL it is percent-encoded as %D2, and in UTF-8 it is stored as the byte sequence 0xC3 0x92.
Is 'Ò' part of standard ASCII?
No. Standard ASCII covers codes 0–127 only. 'Ò' is code 210, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xD2 in Latin-1 but a multi-byte sequence (0xC3 0x92) in UTF-8.