why below line of code will not give me any compilation error
public class Test4
{
public static void main(String...a)
{
float f = \u0038;//Line 1
long L2 = 3L;
float fd = (float) 2.2;
char c = '\u005E';
byte e = 100;
}
}
line 1 float f = \u0038;
will not give me any compilation error
and if it is unicode charectors then can we use them with float,double,int and other primitive type. what are the standard to use unicode charectors with primitive type and if yes then why we can use it??
thanks