ASCII 247
Division Sign (÷)
Latin-1 Supplement
Division sign (÷), the visual ÷ as opposed to the slash /.
All encodings at a glance
| Decimal | 247 |
| Hexadecimal | 0xF7 |
| Octal | 0367 |
| Binary | 11110111 |
| HTML numeric entity | ÷ |
| HTML named entity | ÷ |
| URL encoding | %F7 |
| UTF-8 bytes | 0xC3 0xB7 |
Code snippets
JavaScript
String.fromCharCode(247); // "÷"
247.toString(16); // "f7"Python
chr(247) # control char ÷
ord(chr(247)) # 247
hex(247) # '0xf7'HTML
÷ <!-- named entity -->
÷ <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00F7. In UTF-8 it encodes to the byte sequence 0xC3 0xB7. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xF7, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.