ASCII Code 245 · Unicode U+00F5 · Hex 0xF5
ASCII code 245 (0xF5) represents the o with tilde character in the extended ASCII table (128–255). It is a Latin accented character commonly used in European languages such as French, German, Spanish, Portuguese, and Scandinavian languages. The extended ASCII range builds upon the original 128-character ASCII set, adding accented letters, currency symbols, typographic marks, and mathematical symbols. These characters are defined by the Windows-1252 (CP-1252) encoding, which is a superset of ISO 8859-1 (Latin-1). In modern web development, UTF-8 encoding is preferred, but understanding extended ASCII remains important for legacy system compatibility and character encoding troubleshooting.
| ASCII Code | 245 |
| Hexadecimal | 0xF5 |
| Octal | 365 |
| Binary | 11110101 |
| Unicode | U+00F5 |
| Unicode Name | LATIN SMALL LETTER O WITH TILDE |
| HTML Numeric | õ |
| HTML Entity | õ |
| URL Escape | %F5 |
| UTF-8 (Hex) | C3 B5 |
| Quoted-Printable | =F5 |
// Character literal
let char = 'õ';
// Using char code
let char2 = String.fromCharCode(245);
// Unicode escape
let char3 = '\u00F5'; # Character literal
char = 'õ'
# Using chr()
char = chr(245)
# Using ord() to get code
code = ord('õ') # Returns 245 <!-- Direct character -->
õ
<!-- HTML entity (numeric) -->
õ
<!-- Hex entity -->
õ // Character literal
char c = 'õ';
// Using cast
char c2 = (char)245;
// To get code from char
int code = (int)'õ'; // Returns 245