כיצד לחשב את Number Base Converter
learn.whatIsHeading
Positional number systems use a base (radix). Base 10 (decimal): 0–9; Base 2 (binary): 0–1; Base 16 (hexadecimal): 0–9 and A–F. Computers operate in binary; hex is shorthand for binary in programming.
מדריך שלב אחר שלב
- 1To decimal: digit × base^position, summed
- 2From decimal: repeatedly divide by base, collect remainders
- 3Each hex digit = exactly 4 binary bits
Worked Examples
קלט
Binary 11111111
תוצאה
Decimal 255 · Hex FF · Octal 377
255 = 2⁸ − 1
מוכן לחשב? נסה את מחשבון Number Base Converter החינמי
נסה זאת בעצמך →