Write a function which takes a number and returns the corresponding ASCII char for that value. code example
Example 1: javascript convert between string and ascii
let ascii = 'a'.charCodeAt(0); // 97
let char = String.fromCharCode(ascii); // 'a'
Example 2: character to ascii python
asciiValue=ord(stringCharacter)
#example
asciiValue=ord('A')
#in this example asciiValue equals 64