DevKits

ASCII 43

Plus Sign (+)

Printable ASCII

Plus sign. Addition. In URL query strings, historically represents a space.

All encodings at a glance

Decimal43
Hexadecimal0x2B
Octal0053
Binary00101011
HTML numeric entity+
URL encoding%2B
UTF-8 bytes0x2B

Code snippets

JavaScript

String.fromCharCode(43); // "+"
43.toString(16); // "2b"

Python

chr(43)           # '+'
ord(chr(43))      # 43
hex(43)           # '0x2b'

HTML

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

Nearby codes