Unicode Text File
Jump to navigation
Jump to search
See: Text File, Unicode Standard, UTF-16 Item, Non-Unicode Text File.
References
2010
- http://download.oracle.com/javase/tutorial/i18n/text/convertintro.html
- In the Java programming language char values represent Unicode characters. Unicode is a 16-bit character encoding that supports the world's major languages. You can learn more about the Unicode standard at the Unicode Consortium Web site.
Few text editors currently support Unicode text entry. The text editor we used to write this section's code examples supports only ASCII characters, which are limited to 7 bits. To indicate Unicode characters that cannot be represented in ASCII, such as ö, we used the \uXXXX escape sequence.
- In the Java programming language char values represent Unicode characters. Unicode is a 16-bit character encoding that supports the world's major languages. You can learn more about the Unicode standard at the Unicode Consortium Web site.