Can char in Java actually save Chinese?

Source: Internet
Author: User

Today's interview was asked, "can char in Java save Chinese?" ", I answered some words can not have the word, the results were laughed at, but I also forgot the character encoding of the relevant knowledge so I can not explain. I checked the information in the evening and recorded it.

Online Search This question, the answer exclusively all is can, after all, the random writing line code can clearly prove can:

char c = ' I ';

But the fact is not so simple, Java's internal code is UTF-16, please refer to string encoding (b) to prove that Java's char encoding is UTF-16

Java Char is stored in two bytes, representing the range from ' \u0000 ' to ' \uffff ', that is, from 0 to 65535. In fact, a char cannot represent 65,535 characters, because only u+0000 to u+d7ff and u+e000 to U+FFFF can be used to represent a complete character, these are called BMP, and the other is made up of high surrogate and low surrogate stitching The character represented by 4 bytes.

Therefore , the Java char can only represent the BMP part of the utf-16 character . The extended character set is not represented for CJK (Central CJK Unified ideographs) Section.

For example, in addition to the Ext-a section, char cannot be represented.

Can char in Java actually save Chinese?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.