ASCII 213
Character 213 (Õ)
Latin-1 Supplement
Latin capital letter Õ. Common in Western European languages (French, German, Spanish, Portuguese).
All encodings at a glance
| Decimal | 213 |
| Hexadecimal | 0xD5 |
| Octal | 0325 |
| Binary | 11010101 |
| HTML numeric entity | Õ |
| URL encoding | %D5 |
| UTF-8 bytes | 0xC3 0x95 |
Code snippets
JavaScript
String.fromCharCode(213); // "Õ"
213.toString(16); // "d5"Python
chr(213) # control char Õ
ord(chr(213)) # 213
hex(213) # '0xd5'HTML
Õ <!-- numeric entity (no named entity for this character) -->Unicode & UTF-8 note
In Unicode this is U+00D5. In UTF-8 it encodes to the byte sequence 0xC3 0x95. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD5, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.