It would be nice to have the option to use lower-case letters when converting to string. In my case I use this to generate string keys for redis values and my aim is to be compatible with a previous javascript codebase. In Javascript Number(123456789).toString(36) outputs 21i3v9 while Radix gives 21I3V9.
Thanks!
EDIT: fwiw, the BigNum crates to_str_radix(36) also uses lower-case.
It would be nice to have the option to use lower-case letters when converting to string. In my case I use this to generate string keys for redis values and my aim is to be compatible with a previous javascript codebase. In Javascript
Number(123456789).toString(36)outputs21i3v9while Radix gives21I3V9.Thanks!
EDIT: fwiw, the
BigNumcratesto_str_radix(36)also uses lower-case.