Unicode Text File: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
m (Text replacement - ". ----" to ". ----")
m (Text replacement - ". " to ". ")
 
Line 8: Line 8:
=== 2010 ===
=== 2010 ===
* http://download.oracle.com/javase/tutorial/i18n/text/convertintro.html
* http://download.oracle.com/javase/tutorial/i18n/text/convertintro.html
** In the [[Java programming language]] [[Java char value|char value]]s represent [[Unicode character]]s. [[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]].        <P>            Few [[text editor]]s currently support [[Unicode text]] [[entry]]. The [[text editor]] we used to write this section's code examples supports only [[ASCII character]]s, which are limited to [[7 bits]]. To indicate [[Unicode character]]s that cannot be represented in [[ASCII]], such as [[ö]], we used the \uXXXX [[escape sequence]].  
** In the [[Java programming language]] [[Java char value|char value]]s represent [[Unicode character]]s. [[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]].        <P>            Few [[text editor]]s currently support [[Unicode text]] [[entry]]. The [[text editor]] we used to write this section's code examples supports only [[ASCII character]]s, which are limited to [[7 bits]]. To indicate [[Unicode character]]s that cannot be represented in [[ASCII]], such as [[ö]], we used the \uXXXX [[escape sequence]].


----
----

Latest revision as of 14:10, 2 August 2022

See: Text File, Unicode Standard, UTF-16 Item, Non-Unicode Text File.



References

2010