UnicodeToUtf8 (Unicode function): Difference between revisions
Jump to navigation
Jump to search
m (syntax terms, tags and links) |
mNo edit summary |
||
(8 intermediate revisions by 4 users not shown) | |||
Line 10: | Line 10: | ||
<tr><th>unicode</th> | <tr><th>unicode</th> | ||
<td>A <var>Unicode</var> string.</td></tr> | <td>A <var>Unicode</var> string.</td></tr> | ||
<tr><th>InsertBOM</th> | <tr><th><var>InsertBOM</var></th> | ||
<td>The optional | <td>The optional, [[Notation conventions for methods#Named parameters|name required]], <var>InsertBOM</var> argument is a [[Boolean enumeration|Boolean]]: | ||
<ul> | |||
<li>If its value is <code>True</code>, the "Byte Order Mark" (U+FEFF, encoded as X'EFBBBF') is inserted at the start of the output stream. | |||
<li>If its value is <code>False</code>, the default, no Byte Order Mark is inserted. | |||
</ul></td></tr> | |||
</table> | </table> | ||
Line 22: | Line 26: | ||
==Usage notes== | ==Usage notes== | ||
<ul><li><var>UnicodeToUtf8</var> is available as of <var class="product"> | <ul> | ||
<li><var>UnicodeToUtf8</var> is available as of <var class="product">Sirius Mods</var> Version 7.3. | |||
</ul> | |||
==Examples== | ==Examples== | ||
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. Appending the <var>StringToHex</var> method is useful for viewing the hex values of characters that do not have displayable EBCDIC equivalents. | |||
<p class="code">%u unicode initial('&#xB2;':[[U (String function)|U]]) | <p class="code">%u unicode initial('&#xB2;':[[U (String function)|U]]) | ||
print %u:UnicodeToUtf8:[[StringToHex (String function)|stringToHex]] | print %u:UnicodeToUtf8:[[StringToHex (String function)|stringToHex]] | ||
Line 31: | Line 37: | ||
The result is: | The result is: | ||
<p class="output">C2B2 | <p class="output">C2B2 | ||
</p | </p> | ||
==See also== | ==See also== |
Latest revision as of 20:10, 6 November 2012
Translate to UTF-8 (Unicode class)
UnicodeToUtf8 converts a Unicode string to a UTF-8 Longstring byte stream.
Syntax
%string = unicode:UnicodeToUtf8[( [InsertBOM= boolean])]
Syntax terms
%string | A String or Longstring variable to receive the method object string translated to a UTF-8 byte stream. |
---|---|
unicode | A Unicode string. |
InsertBOM | The optional, name required, InsertBOM argument is a Boolean:
|
Exceptions
UnicodeToUtf8 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.
Usage notes
- UnicodeToUtf8 is available as of Sirius Mods Version 7.3.
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.
%u unicode initial('²':U) print %u:UnicodeToUtf8:stringToHex
The result is:
C2B2
See also
- For more information about UTF-8 conversions, see "Unicode: UTF-8 and UTF-16".
- UnicodeToUtf16 converts a Unicode string to UTF-16.
- Utf8ToUnicode converts a UTF-8 Longstring byte stream to Unicode.