I have a list of Character Codes in prolog.
I would like to change them into characters.
For instance,
L = \"abc\" returns L = [9
L = \"abc\"
L = [9
Use char_code(?Atom, ?ASCII) in a map list.
char_code(?Atom, ?ASCII)
char_code(?Atom, ?ASCII) Convert between character and ASCII value for a single character. (16)
Source