ASCII 43
Plus Sign (+)
Printable ASCII
Plus sign. Addition. In URL query strings, historically represents a space.
All encodings at a glance
| Decimal | 43 |
| Hexadecimal | 0x2B |
| Octal | 0053 |
| Binary | 00101011 |
| HTML numeric entity | + |
| URL encoding | %2B |
| UTF-8 bytes | 0x2B |
Code snippets
JavaScript
String.fromCharCode(43); // "+"
43.toString(16); // "2b"Python
chr(43) # '+'
ord(chr(43)) # 43
hex(43) # '0x2b'HTML
+ <!-- numeric entity (no named entity for this character) -->