Java Long.toHexString(long i)
Syntax
Long.toHexString(long i) has the following syntax.
public static String toHexString(long i)
Example
In the following code shows how to use Long.toHexString(long i) method.
public class Main {
public static void main(String[] args) {
System.out.println(Long.toHexString(15));
}/*from w w w. j a v a 2 s. c o m*/
}
The output: