textRaw("\x9C"); // based on position in CP437 $printer -> text(" 1.95\n"); // B) Manually encoded UTF8 pound symbol. Tests that the driver correctly // encodes this as CP437. $printer -> text(base64_decode("wqM=") . " 2.95\n"); // C) Pasted in file. Tests that your files are being saved as UTF-8, which // escpos-php is able to convert automatically to a mix of code pages. $printer -> text("£ 3.95\n"); $printer -> cut(); $printer -> close();