When I try to display the EURO character (�) with PRINT or gPRINT I don't get the desired result 😡. Any hints?
TIA Martin
When I try to display the EURO character (�) with PRINT or gPRINT I don't get the desired result 😡. Any hints?
TIA Martin
OK I found the solution. After searching the code charts at www.unicode.org I found that the � character has the hex code 20AC or decimal 8364. And indeed (g)PRINT CHR$($20AC) displays the � character 😊. I forgot to think in unicode,...
Martin