BinaryCon Binary Converter

Binary Adder

Result

Binary Adder

Add binary numbers with optional carry visualization.

Example: 1010, 0011

Definition: Adds two binary strings (can be different lengths) and returns the sum in binary with carry handled.

Operation

Binary adder: perform column-wise binary addition with carries. Add aligned bits from LSB to MSB.
Example: 1010 + 0011 = 1101