
public class ConvertNumToStr
{
    public static void main(String[] args)
    {
        int i = 123;
        double x = 3.14;
        String s;
        
        s = "" + i;   // Show Unicode with BlueJ
        s = "" + x;   // Show Unicode with BlueJ
    }
}
