ASCII 92
Reverse Solidus (Backslash) (\)
Printable ASCII
Backslash. Escape character in most string literals (\n, \t, \"). Path separator on Windows.
All encodings at a glance
| Decimal | 92 |
| Hexadecimal | 0x5C |
| Octal | 0134 |
| Binary | 01011100 |
| HTML numeric entity | \ |
| URL encoding | %5C |
| UTF-8 bytes | 0x5C |
Code snippets
JavaScript
String.fromCharCode(92); // "\"
92.toString(16); // "5c"Python
chr(92) # '\'
ord(chr(92)) # 92
hex(92) # '0x5c'HTML
\ <!-- numeric entity (no named entity for this character) -->