Description

Converts a variable containing UTF_8 characters to a variable containing the corresponding ANSI characters.

Syntax

UTF_8_row = UTF8_ANSI(UTF8_row)

Parameters

The UTF8_ANSI function has the following parameters.

ParameterDescription
UTF8_rowA variable containing UTF_8 characters.

See also

ANSI_UTF8()

Example

 

declare function UTF8_ANSI
utf8_char = \C2AE\
ansi_char = UTF8_ANSI(utf8_char)
* ansi_char contains  \AE\ the registration trademark
  • No labels