DevKits

ASCII 243

Character 243 (ó)

Latin-1 Supplement

Latin small letter ó. Common in Western European languages.

All encodings at a glance

Decimal243
Hexadecimal0xF3
Octal0363
Binary11110011
HTML numeric entityó
URL encoding%F3
UTF-8 bytes0xC3 0xB3

Code snippets

JavaScript

String.fromCharCode(243); // "ó"
243.toString(16); // "f3"

Python

chr(243)           # control char ó
ord(chr(243))      # 243
hex(243)           # '0xf3'

HTML

&#243;   <!-- 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.

Nearby codes