DiGrande.it

Blind, Braille and Embossing Technologies

This site uses cookies to personalize content and ads, provide social media features and analyze links. By closing this banner or continuing to browse, you consent to their use.
Read the DiGrande.it Cookie Policy

NumToChar- Converts the Unicode code into its character

Function that converts the Unicode code passed as parameter in the relative string character.

- NumToChar(N): string

Parameters:

- (int) N: Unicode code to be converted into the corresponding character. N ranges from 0 to 65535.

Description:

Use the NumToChar function to convert the Unicode N code into its string character.

Examples:

// Stores in variable S the character B, corresponding to Unicode code 66

S = NumToChar(66)

MsgBox(S)