Simply specify < for the argument index.
import java.util.Formatter; public class MainClass { public static void main(String args[]) { Formatter fmt = new Formatter(); fmt.format("%d in hex is %<x", 255); System.out.println(fmt); } }
255 in hex is ff