UnicodeToUtf8 (Unicode function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (→Examples) |
||
Line 38: | Line 38: | ||
In the following fragment, <var>UnicodeToUtf8</var> is used to show how the | In the following fragment, <var>UnicodeToUtf8</var> is used to show how the | ||
<var>Unicode</var> U+B2 character (superscript 2) is represented in UTF-8. | <var>Unicode</var> U+B2 character (superscript 2) is represented in UTF-8. | ||
Appending the <var> | Appending the <var>StringToHex</var> method is useful for viewing | ||
the hex values of characters that do not have displayable EBCDIC equivalents. | the hex values of characters that do not have displayable EBCDIC equivalents. | ||
The [[U (String function)|U constant function]] and [[StringToHex (String function)|StringToHex]] function | The [[U (String function)|U constant function]] and [[StringToHex (String function)|StringToHex]] function | ||
are used in the example. | are used in the example. | ||
<p class="code">%u | <p class="code">%u Unicode Initial('&#xB2;':U) | ||
Print %u: | Print %u:UnicodeToUtf8:StringToHex | ||
</p> | </p> | ||
Line 50: | Line 50: | ||
<p class="output">C2B2 | <p class="output">C2B2 | ||
</p> | </p> | ||
==See also== | ==See also== | ||
{{Template:Unicode:UnicodeToUtf8 footer}} | {{Template:Unicode:UnicodeToUtf8 footer}} |
Revision as of 22:20, 6 February 2011
Translate to UTF-8 (Unicode class)
This function converts a Unicode string to a UTF-8
Longstring byte stream.
The UnicodeToUtf8 function is available as of version 7.3 of the Sirius Mods.
Syntax
%string = unicode:UnicodeToUtf8[( [InsertBOM= boolean])]
Syntax terms
%utf8Stream | A String or Longstring variable to receive the method object string translated to a UTF-8 byte stream. |
---|---|
unicode | A Unicode string. |
InsertBOM=bool | The optional (name required) InsertBOM argument is a Boolean:
|
Exceptions
This function can throw the following exception:
- CharacterTranslationException
- If the method encounters a translation problem, properties of the exception object may indicate the location and type of problem. See CharacterTranslationException exception class.
Usage notes
- For more information about UTF-8 conversions, see Unicode#UTF-8 and UTF-16.
- The UnicodeToUtf16 method converts a Unicode string to UTF-16.
- The Utf8ToUnicode method converts a UTF-8 Longstring byte stream to Unicode.
Examples
In the following fragment, UnicodeToUtf8 is used to show how the Unicode U+B2 character (superscript 2) is represented in UTF-8. Appending the StringToHex method is useful for viewing the hex values of characters that do not have displayable EBCDIC equivalents.
The U constant function and StringToHex function are used in the example.
%u Unicode Initial('²':U) Print %u:UnicodeToUtf8:StringToHex
The result is:
C2B2