https://binary2hex.com/numberconverter.html?id=27682

Transfer -60 from decimal in binary number system

Enter a number:
His number system:
Binary
Ternary
Octal
Decimal
Hexadecimal
Binary-decimal
Other
Additional

Translate the number 6010 в binary like this:

the Integer part of the number is divided by the base of the new number system:

602
-60302
0-30152
0-1472
1-632
1-21
1
Перевод чисел из одной системы счисления в другую

the result of the conversion was:

6010 = 1111002

You specified the size of your number 1 byte.

Add a signed bit to the number like this:

1111002 = 101111002

Since the number you entered is negative, you need to translate it from the direct code to the additional one.

to do this, first perform the conversion from direct code to reverse by inverting all bits except the signed one, then get the direct code by adding 1 bit.

10111100  direct code
..
11000011 reverse code
+1 +1 bit
11000100 additional code
the Final answer: -6010 = 110001002 (1 byte)
Permanent link to the result of this calculation