Sorry i know its the topic of blue j but danpost plz help me
I want all the unicode to be printed, but it's not printing some of the unicode.(its lacking some symbols like ए, आ, ज, ब)
Even if i want the emojis to be printed. I got a website to print emoji but i m not able to write the code for emoji
Here i want 2 things
1. Some of the symbols which r not printed by the given code(like ए, ट, म, व, च)
2. I want the easiest way to print emojis (i m not able to get any emoji in the below code which i have written)
public class PrintingUnicodeCharacters {
public static void main(String[] args) {
for (int i = 0; i <= 65535; i++) {
char unicode = (char) i;
System.out.print(unicode);
} } }

