I figured out how to print basic text to our POS printer, but I can\'t figure out how to get the escape characters to work (for bold, text alignment, etc). For now I\'m just tes
Androidz answer is correct. Also you can do some thing like below.
Assume you want to print bold.
string text = "ESC|bC" + "BOLD Text"; // Now replace ESC as below. string textToPrint = text.Replace("ESC", ((char)27).ToString());
That's it.