from String to int
int num= Integer.parseInt(str);
from string to double
double num= Double.parseDouble(str);
from double to int
int intNum= (int) dblNum;
from int to double
double dblNum= intNum;
from int to char
char ch=(char) intNum;
from double to String
String str= “ “ + dblNum;
from char to String
String str= “ “ + ch;
String to char
char ch=str.charAt(position);