ASCII 243
Character 243 (ó)
Latin-1 Supplement
Latin small letter ó. Common in Western European languages.
All encodings at a glance
| Decimal | 243 |
| Hexadecimal | 0xF3 |
| Octal | 0363 |
| Binary | 11110011 |
| HTML numeric entity | ó |
| URL encoding | %F3 |
| UTF-8 bytes | 0xC3 0xB3 |
Code snippets
JavaScript
String.fromCharCode(243); // "ó"
243.toString(16); // "f3"Python
chr(243) # control char ó
ord(chr(243)) # 243
hex(243) # '0xf3'HTML
ó <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00F3. In UTF-8 it encodes to the byte sequence 0xC3 0xB3. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF3, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.