About Java code points and code units

Source: Internet
Author: User

The Java char type is 16-bit (UTF-16 encoded), which does not satisfy all Unicode character encodings, and the Java code point refers to the Unicode encoded value corresponding to a character, such as the Unicode code point of a character as u+0041. The number of code points is actually the number of Unicode characters.

Each char variable is actually a unit of code, and a character typically corresponds to a unit of code or multiple code units.

The length method of the string returns the number of code units (note, not the number of characters), and the Codepointcount method returns the number of code points, which is the number of Unicode characters.

When compiling Java source code, Javac's-encoding option can specify the encoding used by the source code character file, because if this option is not added, Javac chooses a default encoding assumed to be the encoding of the source file, but cannot be compiled if the assumed encoding does not match the actual encoding of the file. In many code scenarios, coding-related operations involve the default encoding, so do not rely on the default encoding, which indicates that a stream's encoding is always right in the code.

About Java code points and code units

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.