DevKits

ASCII 245

Character 245 (õ)

Latin-1 Supplement

Latin small letter õ. Common in Western European languages.

All encodings at a glance

Decimal245
Hexadecimal0xF5
Octal0365
Binary11110101
HTML numeric entityõ
URL encoding%F5
UTF-8 bytes0xC3 0xB5

Code snippets

JavaScript

String.fromCharCode(245); // "õ"
245.toString(16); // "f5"

Python

chr(245)           # control char õ
ord(chr(245))      # 245
hex(245)           # '0xf5'

HTML

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

Nearby codes