ASCII 215
Multiplication Sign (×)
Latin-1 Supplement
Multiplication sign (×), the visual × as opposed to the letter x.
All encodings at a glance
| Decimal | 215 |
| Hexadecimal | 0xD7 |
| Octal | 0327 |
| Binary | 11010111 |
| HTML numeric entity | × |
| HTML named entity | × |
| URL encoding | %D7 |
| UTF-8 bytes | 0xC3 0x97 |
Code snippets
JavaScript
String.fromCharCode(215); // "×"
215.toString(16); // "d7"Python
chr(215) # control char ×
ord(chr(215)) # 215
hex(215) # '0xd7'HTML
× <!-- named entity -->
× <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00D7. In UTF-8 it encodes to the byte sequence 0xC3 0x97. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xD7, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.