DevKits

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

Decimal92
Hexadecimal0x5C
Octal0134
Binary01011100
HTML numeric entity\
URL encoding%5C
UTF-8 bytes0x5C

Code snippets

JavaScript

String.fromCharCode(92); // "\"
92.toString(16); // "5c"

Python

chr(92)           # '\'
ord(chr(92))      # 92
hex(92)           # '0x5c'

HTML

&#92;   <!-- numeric entity (no named entity for this character) -->

Nearby codes