Top "Base62" questions

Base62 is a positional notation compression notably used (optionally) by Dean Edwards' packer JavaScript compressor.

Base 62 conversion

How would you convert an integer to base 62 (like hexadecimal, but with these digits: '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'). I have been trying …

python math base62
Creating a salt in python

How would I create a random, 16-character base-62 salt in python? I need it for a protocol and I'm not …

python salt base62
Shortening java UUID while preserving the uniqueness

I'm trying to make the java UUID shorter while preserving the same uniqueness as the UUID has. I wrote the …

java uuid base62
Convert a string into BASE62

I'm looking for the c# code to convert a string into BASE62, like this: http://www.molengo.com/base62/title/…

c# type-conversion base62
Convert MD5 to base62 for URL

I have a script to convert to base 62 (A-Za-z0-9) but how do I get a number out of MD5? …

php md5 base62
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