+

ASCII Character: Plus sign

ASCII Code 43 · Unicode U+002B · Hex 0x2B

plus-sign plus

About the Plus sign Character

ASCII code 43 (0x2B) represents the Plus sign character "+". The "Plus sign" character (+) with ASCII code 43 is a mathematical operator. Mathematical operators in the printable ASCII range provide the fundamental arithmetic symbols used in programming, spreadsheets, and mathematical notation. The printable ASCII characters (codes 32–126) include the space, digits, uppercase and lowercase Latin letters, and common punctuation symbols. These 95 characters form the foundation of text representation in virtually all computing systems and are universally supported across all character encodings, programming languages, and operating systems.

Encoding Details

ASCII Code 43
Hexadecimal 0x2B
Octal 053
Binary 00101011
Unicode U+002B
Unicode Name PLUS SIGN
HTML Numeric +
HTML Entity +
URL Escape %2B
UTF-8 (Hex) 2B
Quoted-Printable +

Source Code Examples

JavaScript
// Character literal
let char = '+';
// Using char code
let char2 = String.fromCharCode(43);
// Unicode escape
let char3 = '\x2B';
Python
# Character literal
char = '+'
# Using chr()
char = chr(43)
# Using ord() to get code
code = ord('+')  # Returns 43
HTML
<!-- Direct character -->
+
<!-- HTML entity (numeric) -->
&#43;
<!-- Hex entity -->
&#x2B;
C#
// Character literal
char c = '+';
// Using cast
char c2 = (char)43;
// To get code from char
int code = (int)'+';  // Returns 43

Navigate

Copied!