base

base is the base or the base encoding method with the 'characters'.
the base64 'characters' is ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/.
the base32 'characters' is ABCDEFGHIJKLMNOPQRSTUVWXYZ234567.


example of the base


65280(0xff00)

=255*2561+0*2560
=15*163+15*162+0*161+0*160
=1*85+7*84+7*83+4*82+0*81+0*80

256, 16, 8 are bases.


example of the base converting method


Array.convertBase.js



example of the base encoding method


Number.toPowerOf2.js


String.toBaseEncode.js


String.toBaseDecode.js