I am not that familiar with Javascript, and am looking for the function that returns the UNICODE value of a character, and given the UNICODE value, returns the string equivalent. I'm sure there is something simple, but I don't see it.
Example:
- ASC("A") = 65
- CHR(65) = "A"
- ASC("ਔ") = 2580
- CHR(2580) = "ਔ"