Here you can find the source of toBase36(long l)
public static String toBase36(long l)
//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 }