DevKits

ASCII 245

Character 245 (õ)

Latin-1 Supplement

Latin small letter õ. Common in Western European languages.

Common uses & context

Decimal 245 (0xF5) is Character 245, part of the Latin-1 Supplement (128–255). Latin small letter õ. Common in Western European languages. It renders as 'õ' and its binary byte is 11110101.

This is where single-byte ASCII ends and encoding matters. In Latin-1 (ISO-8859-1) 'õ' is the single byte 0xF5. In UTF-8 — today's default for the web — the same character is the multi-byte sequence 0xC3 0xB5. Treating a Latin-1 byte as UTF-8 (or vice versa) is the usual reason accented letters and symbols turn into mojibake like é or €. The Unicode code point is U+00F5, and in HTML you can write it as õ.

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) -->

Programming notes

  • Single byte 0xF5 in Latin-1, but the multi-byte sequence 0xC3 0xB5 in UTF-8 — never assume one byte per character above code 127.
  • Unicode code point U+00F5; HTML numeric entity &#245;.
  • If 'õ' shows as mojibake, the encoding declared and the encoding used disagree — align both on UTF-8.

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.

Frequently asked questions

What character is ASCII code 245?

ASCII code 245 is the character 'õ' (Character 245). In hexadecimal it is 0xF5, in octal 0365, and in binary 11110101.

What is 0xF5 in ASCII?

Hexadecimal 0xF5 equals decimal 245, which is the character 'õ' (Character 245). To convert hex to ASCII yourself, read the two hex digits as a base-16 number (0xF5 = 245) and look up that code point.

How do I write the character with code 245 in code?

In JavaScript use String.fromCharCode(245); in Python use chr(245); in HTML use the numeric entity &#245;. In a URL it is percent-encoded as %F5, and in UTF-8 it is stored as the byte sequence 0xC3 0xB5.

Is 'õ' part of standard ASCII?

No. Standard ASCII covers codes 0–127 only. 'õ' is code 245, part of the Latin-1 Supplement (128–255, sometimes called "extended ASCII"). It is a single byte 0xF5 in Latin-1 but a multi-byte sequence (0xC3 0xB5) in UTF-8.

Nearby codes

Encode & convert this character