Description

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

Syntax

Unicode_value = GetANSIToUnicode (ANSI_value)

Parameters

The GetANSIToUnicode function has the following parameters.

ParameterDescription
ANSI_valueThe decimal value of the ANSI character.

See also

GetUnicodeToANSI()

Example

declare function GetANSIToUnicode
* 174 is the decimal value of \AE\, the registration sign
ansi_value = 174  
Unicode_value = GetANSIToUnicode(ansi_value)
* Unicode_value contains the corresponding Unicode decimal value
  • No labels