Top "Base-conversion" questions

Base conversion is the process of changing the base of the textual representation of a number to another base.

Convert a very large number from decimal string to binary representation?

I have a very big number, on the order of a thousand decimal digits, and I have to convert this …

algorithm base-conversion
How to convert a decimal base (10) to a negabinary base (-2)?

I want to write a program to convert from decimal to negabinary. I cannot figure out how to convert from …

algorithm base base-conversion
conversion from any base to base 10 c++

I found two ways of conversion from any base to base 10 . the first one is the normal one we do …

c++ base-conversion
Hex Twos Complement Arithmetic

I'm trying to do the following problem: E8B2035D -FB60528D ---------- In which, the integers represented are hex …

subtraction hex twos-complement base-conversion
Decimal Division by left shift

I have been given a question to convert base from 10 to 2 without using division(/) and modules(%),so I came up …

c++ c++11 bit-shift base-conversion bitwise-and
Convert large hex string to decimal string

I need to convert a large (too large for the built-in data types) hex string to a string with it's …

c++ arbitrary-precision base-conversion
Converting number base

Is there a platform function that will do the following? convertBase :: (Num a, Num b) => Int -> Int …

haskell base-conversion
PHP - How to base_convert() up to base 62

I need a base_convert() function that works from base 2 up to base 62 but I'm missing the math I need …

php math base-conversion base62