Relative index enables you to reuse the argument matched by the preceding format specifier
Simply specify
import java.util.Formatter; public class MainClass { public static void main(String args[]) { Formatter fmt = new Formatter(); fmt.format("%d in hex is % System.out.println(fmt); } } 255 in hex is ff