We are using citizen/HP printer to print receipt. to print Bold characters uses following code
string Bold = Escape + (char) 33; // u001b!
string BoldStart = Bold + (char)8;// u001b!\b
string BoldEnd = Bold + (char)0;
what could be code to print Italic characters. I have tried following not solved issue.
string Italic = Escape + (char)128;
Note: these printers identify ascii, so html tags and other windows/OS related fonts/tags not working.