In this tutorial we will learn how to convert a float type value to char type value.
This program will take a float value from console and provides a conversion to char type data. The line float myfloat = Float.parseFloat(buffreader.readLine()); reads the float type data from console. The line char mychar = (char)(myfloat); converts the myfloat float type data to mychar char type value.
import java.io.*;
class floattochar {
public static void main(String[] args) {
try {
// Reads the value from console
BufferedReader buffreader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("---Data Conversion from float type to char type---");
System.out.println("Enter float type value: ");
// Read float type data
float myfloat = Float.parseFloat(buffreader.readLine());
// Convert float type data to char type
char mychar = (char)(myfloat);
System.out.println("Converted value from float type to char type is : " + mychar);
}
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.