Top "Base36" questions

Base 36 is a positional numeral system using 36 as the radix.

Datatype to store 20 digit number

I have a number of 20 digit, which datatype will support to store this number? I have tried long, double but …

java math numbers type-conversion base36
Base 36 to Base 10 conversion using SQL only

A situation has arisen where I need to perform a base 36 to base 10 conversion, in the context of a SQL …

sql oracle base36
Encode String to Base36

Currently I am working at an algorithm to encode a normal string with each possible character to a Base36 string. …

java string algorithm biginteger base36
Convert a Long to base 36 in scala

How can I convert a Long to base36 ? Along with your answer can explain how you came to the answer? …

scala long-integer base36
How to convert a floating point number to Base36 in C# in the same way as JavaScript's .toString(36) does it

I am trying to convert some code to the C# (from the JavaScript), I need to convert a double number(0.04036483168558814) …

javascript c# encoding base36