Java Base Encode toBase36(long l)

Here you can find the source of toBase36(long l)

Description

to Base

License

Open Source License

Declaration

public static String toBase36(long l) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String toBase36(long l) {
        return Long.toString(l, 36);
    }//from   ww w  . j  av a  2s  . c o m
}

Related

  1. toBase2(byte b)
  2. toBase26(int number)
  3. toBase2SuffixedString(long n)
  4. toBase32Char(int i)
  5. toBase36(int decimalNumber)
  6. toBase36(long num)
  7. toBase62(int decimalNumber)
  8. toBase8(int decimalNumber)
  9. toBase85String(byte[] data)