/** * Java Program - Convert Int to Float */ public class IntToFloat { public static void main(String[] args) { int i = 0x40000085; float f = Float.intBitsToFloat(i); System.out.println(f); } }