This site requires JavaScript, please enable it in your browser!
Greenfoot back
Roshan123
Roshan123 wrote ...

2020/9/3

Danpost plz help me in blue j

Roshan123 Roshan123

2020/9/3

#
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)
1
2
3
4
5
6
7
8
9
10
public class PrintingUnicodeCharacters { 
 
public static void main(String[] args) { 
 
for (int i = 0; i <= 65535; i++) { 
 
char unicode = (char) i; 
 
System.out.print(unicode); 
} } }
Roshan123 Roshan123

2020/9/3

#
The main theme of this topic is; i want all the symbols and emojis to be printed
Roshan123 Roshan123

2020/9/3

#
I m not sure but i think it can be printed with the help of decimal but i don't know how to print Is it possible to print it with the help of decimal
danpost danpost

2020/9/3

#
There are some control codes below 32 that will either not print or perform their intended operations (BS=8, LF=10 and CR=13, to name a few). There may be one more that lies between 32 and 100. There are many above 256 that are either unassigned or will display as a small unfilled box. I do not think you can do anything about how they display in the greenfoot terminal.
You need to login to post a reply.