tags:

views:

38

answers:

1

Hi i want to convert following number to character equivalent but without using any special character. Please Help me. Thank you very much

32545352515049515448524848495270484848484870706670666970

+1  A: 

You need to add 64 ($40) to each number before converting it to a character.

Uppercase characters start at 65 ($41) in the ASCII table.

Lieven
Just to add that lower case letter start at 97 ($61).
Oded