Saved Bookmarks
| 1. |
How many bites does it take to represent one carector? |
|
Answer» Characters can have 1 to 6 bytes(some of them MAY be not required right now). UTF-32 each charactershave 4 bytes a characters. UTF-16 uses 16 BITS for each character and itrepresents only PART of Unicodecharacters CALLED BMP (for all practical purposes its enough). Java uses this encoding in its strings. |
|