I'm looking for a general method of radix conversion, that might be performed without using decimal system at all.
Given a number $x$ in base $b_1$, and I want to convert it to the base $b_2$, where $x, b_1, b_2$ are positive integers and $b_1, b2 \ne 10$.
I know the question is very basic but unfortunately, all I have encountered till now were cases where one of the bases is 10, or the conversion method includes decimal system as a step. Also, I found some shortcut methods to convert between certain systems (where both bases are powers of $2$), but is there a general method? Do I miss something and there's a way to achieve it using Euclidean division or Horner's scheme?