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