Online Java Compiler By
JavaTpoint.com
public class DecimalToHexExample1{ public static void main(String args[]){ System.out.println(Integer.toHexString(10)); System.out.println(Integer.toHexString(15)); System.out.println(Integer.toHexString(289)); }}
Output