What is unicode?

Answers were Sorted based on User's Feedback



What is unicode?..

Answer / satyam

A 16-bit character encoding used in Java.Unicode allows
Java to handle international characters for most of the
world’s living languages, including Arabic, Armenian,
Bengali, Bopomofo, Chinese (via unified Han), Cyrillic,
English, Georgian, Greek, Gujarati, Gurmukhi, Hebrew, Hindi
(Devanagari), Japanese (Kanji, Hiragana and Katakana via
unified Han), Kannada, Korean (Hangul via unified Han),
Lao, Maylayalam, Oriya, Tai, Tamil, Telugu, Tibetan…
Unicode will make it much easier for non-English speaking
programmers to write programs for English speaking users
and vice versa.

Is This Answer Correct ?    2 Yes 0 No

What is unicode?..

Answer / vinoth sing

java uses the uniform 16 bit coding scheme called unicode to
represents characters which can incorporate 65000 characters.

Is This Answer Correct ?    2 Yes 0 No

What is unicode?..

Answer / chandra sekhar dash

Unicode systemis an encoding standard that provides aunique
number for every character, no matter what the
platform,program,language is.Unicode uses 2bytes to
represent a character

Is This Answer Correct ?    1 Yes 0 No

What is unicode?..

Answer / rohan mendez

Unicode is a Character encoding, which provides a system of numbers to represent characters in a digital device such as computers. java uses UTF-16 encoding scheme of Unicode, which represent each character in one or two sequence of 16 bit bytes, these bytes are called code units.

Is This Answer Correct ?    0 Yes 0 No

What is unicode?..

Answer / guru

unicode is the universal code. In language like java the
applications can be developed in diff types of OS and
deployed in diff OS because of its Portability feature.
Since it is used in various types of OS across the world,
the type of data (eng,latin etc) needs to be stored, in
such situation java uses Unicode instead of ASCII code to
accept the data of different types and used across the world

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

Which is better 64 bit or 32 bit?

0 Answers  


What are the benefits of operations?

0 Answers  


what do you meant by Runtime Polymorphism?

13 Answers   BVIMR, IBM, Persistent,


Which is better ascii or unicode?

0 Answers  


Can we modify the throws clause of the superclass method while overriding it in the subclass?

0 Answers  






what is the difference between object and class

10 Answers   IBM,


Is there any use of an abstract class which has no methods and no attributes?

1 Answers   Wipro,


How to call static method?

4 Answers   Epoch,


Explain scope or life time of local variables in java?

0 Answers  


What is the difference between a switch statement and an if statement?

0 Answers  


What is the difference between method overriding and overloading?

0 Answers  


What is skeleton and stub?

0 Answers  


Categories