ASCII code to char

Hello,

Could you tell me which method should I use to convert an ASCII code to a char? Ex: converting 65 to “A”

3 Likes

Hi,

Asc(“A”).ToString, gives a string representation of 65.

And the other way from code to char Chr(65) returns A

br,
Topi

3 Likes

oh, it didn’t cross my mind. thanks!