DevKits

ASCII 247

Division Sign (÷)

Latin-1 Supplement

Division sign (÷), the visual ÷ as opposed to the slash /.

All encodings at a glance

Decimal247
Hexadecimal0xF7
Octal0367
Binary11110111
HTML numeric entity÷
HTML named entity÷
URL encoding%F7
UTF-8 bytes0xC3 0xB7

Code snippets

JavaScript

String.fromCharCode(247); // "÷"
247.toString(16); // "f7"

Python

chr(247)           # control char ÷
ord(chr(247))      # 247
hex(247)           # '0xf7'

HTML

&divide;   <!-- named entity -->
&#247;   <!-- 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.

Nearby codes