"\n" always works, for specific ascii characters, I think you can use:
char a = 131;
Display("The character with ASCII 131 is %c",a);
(I think the following may work too:
Display("The character with ASCII 131 is %c",131);
)
char a = 131;
Display("The character with ASCII 131 is %c",a);
(I think the following may work too:
Display("The character with ASCII 131 is %c",131);
)