Hey I have seen sites that instead of an int show you a string.

For example d2fr4st == 147392525 and d2fr4ss == 147392524. What base is this? And how can I do the same conversion in php and .NET?

At the moment converting from 147392524 to d2fr4ss would be most useful.

link|improve this question

74% accept rate
feedback

3 Answers

up vote 1 down vote accepted

For .Net there's an implementation here: base36

UInt64ToBase36(147392524); //2FR4SS
UInt64ToBase36(147392525); //2FR4ST

Like VolkerK said I'd assume the d is an identifier perhaps just to show that the string is a base36 number if it's using more bases.

link|improve this answer
feedback
echo base_convert(147392524 , 10, 36), "\n";

prints 2fr4ss. The leading d might be an identifier or some kind of checksum ...or simply a typo?

see http://docs.php.net/base_convert

link|improve this answer
feedback

It's probably base64. PHP has base64_encode, ASP.NET has Convert.ToBase64String

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.