Tracing a letter with its ascii code

I know letters have a number code to them, or ascii code, how can I use this to trace a letter with a number, for example lets say the ascii code for the letter ‘a’ is 97, in AS3 is there a way todo something like:

trace(asciiToString(97));

to trace out ‘a’, thanks in advance.