+ 3
Unicode
what is Unicode?
6 Respostas
+ 6
example
+ 3
for example
+ 2
examplr
+ 2
What trick you use to win continuesly
+ 1
Java uses unicode to represent characters. Unicode defines a complete international character set that can represent all d characters found in all human lanuages.
+ 1
as like of ascii code,range from 1 to 127
char c1,c2;
e.g.
c1= 89; // ascii and unicode for Y
c2= 'Z'; //character Z stored in variable
c1= c1+1; // c1 stores 90,ascii and unicode for Z
//hope u get it