keecode logokeecode
+

Plus sign

Decimal: 43
Hex: 2B
Symbol

ASCII Values

Decimal

43

Hexadecimal

0x2B

Character

+

Usage Examples

JavaScript (from decimal)

String.fromCharCode(43); // "+"

JavaScript (to decimal)

"+".charCodeAt(0); // 43

Python

chr(43)  # "+"
ord("+")  # 43

C/C++

char c = 43;  // '+'
int code = '+';  // 43