Description

Converts the Unicode numeric value to an ANSI numeric value using the current ANSI to Unicode map in effect.

Syntax

ANSI_value = GetUnicodeToANSI (Unicode_value)

Parameters

The GetUnicodeToANSI function has the following parameters.

ParameterDescription
Unicode_valueThe decimal value of the Unicode character.

See also

GetANSIToUnicode()

Example

declare function GetUnicodeToANSI
* 1741 the Unicode value to convert
Unicode_Value = 1741
ANSI_value = GetUnicodeToANSI(Unicode_value)
* ANSI_value contains the corresponding ANSI decimal value
  • No labels