+
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("+") # 43C/C++
char c = 43; // '+' int code = '+'; // 43
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.