ASCII 47
Solidus (Forward Slash) (/)
Printable ASCII
Forward slash. Path separator on Unix and in URLs. Division operator.
All encodings at a glance
| Decimal | 47 |
| Hexadecimal | 0x2F |
| Octal | 0057 |
| Binary | 00101111 |
| HTML numeric entity | / |
| URL encoding | %2F |
| UTF-8 bytes | 0x2F |
Code snippets
JavaScript
String.fromCharCode(47); // "/"
47.toString(16); // "2f"Python
chr(47) # '/'
ord(chr(47)) # 47
hex(47) # '0x2f'HTML
/ <!-- numeric entity (no named entity for this character) -->