DevKits

ASCII 211

Character 211 (Ó)

Latin-1 Supplement

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

All encodings at a glance

Decimal211
Hexadecimal0xD3
Octal0323
Binary11010011
HTML numeric entityÓ
URL encoding%D3
UTF-8 bytes0xC3 0x93

Code snippets

JavaScript

String.fromCharCode(211); // "Ó"
211.toString(16); // "d3"

Python

chr(211)           # control char Ó
ord(chr(211))      # 211
hex(211)           # '0xd3'

HTML

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

Unicode & UTF-8 note

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

Nearby codes