Description

Converts a UNICODE string to an UTF8 string.

Syntax

ansiString = UNICODE_UTF8 (uniCodeString, delimiter)

Parameters

The function has the following parameters:

ParameterDescription
uniCodeStringThe Unicode string to convert to UTF8. This string will contain two-byte Unicode characters.
delimiterThe minimum delimiter value to use in the conversion.

Returns

A string containing UTF8 characters.

See also

UTF8_UNICODE()

Example

declare function UNICODE_UTF8
 
utf8_char = \C2AE\
unicode_char = UNICODE_UTF8(utf8_char)
  • No labels