Java Integer.toHexString(int i)

Syntax

Integer.toHexString(int i) has the following syntax.

public static String toHexString(int i)

Example

In the following code shows how to use Integer.toHexString(int i) method.


public class Main {
  public static void main(String[] args) {
    System.out.println(Integer.toHexString(0));
    System.out.println(Integer.toHexString(10));
    System.out.println(Integer.toHexString(11));
    System.out.println(Integer.toHexString(16));
    System.out.println(Integer.toHexString(17));
    System.out.println(Integer.toHexString(100));
    System.out.println(Integer.toHexString(1000));
  }/*from   w w w . j a va 2 s . co m*/
}

The output:





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable