I need to generate a unique code with 5 lengths with the given number. In other words, I need to encode natural number to 5 length unique code
I wanna give fixed-length rememberable code to the customer, and keep the sequential number in the database and encode or decode when needed.
The given number can be in the range of 1 to 9999999. But the result always must be 5 lengths.
for example
1 => a56er or 2 => c7gh4
Uniqueness is important I googled a lot and I can't find a solution.
Right. So you need to encode 24 bits of information, and you have 5 characters in which to do that - so you need 5 bits per character. That's pleasantly in the range of "only digits and lower case ASCII characters" and you can even remove points of confusion like "o/0" and "i/1".
Note that this isn't in any way "secure" - it's entirely predictable and reversible. If you don't want customers being able to reverse engineer their sequence number from the encoded form, it won't work. But it's a simple way of encoding a number as a fixed-length string.
Sample code showing encoding and decoding:
Output: