I'm getting illegal unicode escape for the following code.
for(int i=3400;i<4000;i++)
System.out.println("\u" + i );
If I add a slash before I get \u3400
as output instead of actual unicode character.
I want to print the unicode characters in a loop. Also unicode characters are hex codes. How to loop through hex codes and print all unicode characters.