Convert 101 001 101 101 269 to Unsigned Binary (Base 2)

See below how to convert 101 001 101 101 269(10), the unsigned base 10 decimal system number to base 2 binary equivalent

What are the required steps to convert base 10 decimal system
number 101 001 101 101 269 to base 2 unsigned binary equivalent?

  • A number written in base ten, or a decimal system number, is a number written using the digits 0 through 9. A number written in base two, or a binary system number, is a number written using only the digits 0 and 1.

1. Divide the number repeatedly by 2:

Keep track of each remainder.

Stop when you get a quotient that is equal to zero.


  • division = quotient + remainder;
  • 101 001 101 101 269 ÷ 2 = 50 500 550 550 634 + 1;
  • 50 500 550 550 634 ÷ 2 = 25 250 275 275 317 + 0;
  • 25 250 275 275 317 ÷ 2 = 12 625 137 637 658 + 1;
  • 12 625 137 637 658 ÷ 2 = 6 312 568 818 829 + 0;
  • 6 312 568 818 829 ÷ 2 = 3 156 284 409 414 + 1;
  • 3 156 284 409 414 ÷ 2 = 1 578 142 204 707 + 0;
  • 1 578 142 204 707 ÷ 2 = 789 071 102 353 + 1;
  • 789 071 102 353 ÷ 2 = 394 535 551 176 + 1;
  • 394 535 551 176 ÷ 2 = 197 267 775 588 + 0;
  • 197 267 775 588 ÷ 2 = 98 633 887 794 + 0;
  • 98 633 887 794 ÷ 2 = 49 316 943 897 + 0;
  • 49 316 943 897 ÷ 2 = 24 658 471 948 + 1;
  • 24 658 471 948 ÷ 2 = 12 329 235 974 + 0;
  • 12 329 235 974 ÷ 2 = 6 164 617 987 + 0;
  • 6 164 617 987 ÷ 2 = 3 082 308 993 + 1;
  • 3 082 308 993 ÷ 2 = 1 541 154 496 + 1;
  • 1 541 154 496 ÷ 2 = 770 577 248 + 0;
  • 770 577 248 ÷ 2 = 385 288 624 + 0;
  • 385 288 624 ÷ 2 = 192 644 312 + 0;
  • 192 644 312 ÷ 2 = 96 322 156 + 0;
  • 96 322 156 ÷ 2 = 48 161 078 + 0;
  • 48 161 078 ÷ 2 = 24 080 539 + 0;
  • 24 080 539 ÷ 2 = 12 040 269 + 1;
  • 12 040 269 ÷ 2 = 6 020 134 + 1;
  • 6 020 134 ÷ 2 = 3 010 067 + 0;
  • 3 010 067 ÷ 2 = 1 505 033 + 1;
  • 1 505 033 ÷ 2 = 752 516 + 1;
  • 752 516 ÷ 2 = 376 258 + 0;
  • 376 258 ÷ 2 = 188 129 + 0;
  • 188 129 ÷ 2 = 94 064 + 1;
  • 94 064 ÷ 2 = 47 032 + 0;
  • 47 032 ÷ 2 = 23 516 + 0;
  • 23 516 ÷ 2 = 11 758 + 0;
  • 11 758 ÷ 2 = 5 879 + 0;
  • 5 879 ÷ 2 = 2 939 + 1;
  • 2 939 ÷ 2 = 1 469 + 1;
  • 1 469 ÷ 2 = 734 + 1;
  • 734 ÷ 2 = 367 + 0;
  • 367 ÷ 2 = 183 + 1;
  • 183 ÷ 2 = 91 + 1;
  • 91 ÷ 2 = 45 + 1;
  • 45 ÷ 2 = 22 + 1;
  • 22 ÷ 2 = 11 + 0;
  • 11 ÷ 2 = 5 + 1;
  • 5 ÷ 2 = 2 + 1;
  • 2 ÷ 2 = 1 + 0;
  • 1 ÷ 2 = 0 + 1;

2. Construct the base 2 representation of the positive number:

Take all the remainders starting from the bottom of the list constructed above.

101 001 101 101 269(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:

101 001 101 101 269 (base 10) = 101 1011 1101 1100 0010 0110 1100 0000 1100 1000 1101 0101 (base 2)

Spaces were used to group digits: for binary, by 4, for decimal, by 3.


How to convert unsigned integer numbers (positive) from decimal system (base 10) to binary = simply convert from base 10 to base 2

Follow the steps below to convert a base ten unsigned integer number to base two:

  • 1. Divide repeatedly by 2 the positive integer number that has to be converted to binary, keeping track of each remainder, until we get a QUOTIENT that is equal to ZERO.
  • 2. Construct the base 2 representation of the positive integer number, by taking all the remainders starting from the bottom of the list constructed above. Thus, the last remainder of the divisions becomes the first symbol (the leftmost) of the base two number, while the first remainder becomes the last symbol (the rightmost).

Example: convert the positive integer number 55 from decimal system (base ten) to binary code (base two):

  • 1. Divide repeatedly 55 by 2, keeping track of each remainder, until we get a quotient that is equal to zero:
    • division = quotient + remainder;
    • 55 ÷ 2 = 27 + 1;
    • 27 ÷ 2 = 13 + 1;
    • 13 ÷ 2 = 6 + 1;
    • 6 ÷ 2 = 3 + 0;
    • 3 ÷ 2 = 1 + 1;
    • 1 ÷ 2 = 0 + 1;
  • 2. Construct the base 2 representation of the positive integer number, by taking all the remainders starting from the bottom of the list constructed above:
  • 55(10) = 11 0111(2)
  • Number 5510, positive integer (no sign), converted from decimal system (base 10) to unsigned binary (base 2) = 11 0111(2)