Top "Ansi" questions

ANSI stands for American National Standards Institute.

PHP - How to save text file with ANSI encoding?

I'm doing: file_put_contents("txt/myfile.txt", $fileContents); I have tried many ways to force my text file to …

php utf-8 ansi plaintext
Issue getting ANSICON working on Windows 7 Enterprise 64-bit

I have been trying to get 1.50 or 1.40 ANSICON (https://github.com/adoxa/ansicon) working and have looked at sooooo many …

cucumber cmd jruby ansi
How to find text between two strings in c

I need to extract the text between 2 string patterns in c. Example: aaaaaa<BBBB>TEXT TO EXTRACT</…

c string char ansi strstr
How to printf accented characters in ANSI C (like á é í ó ú)

I tried to printf with some accented characters such as á é í ó ú: printf("my name is Seán\n"); The text editor …

c printf ansi non-ascii-characters
Is there a way to erase the last line of output?

A very simple program that prints 3 lines of output: console.log('a'); console.log('b'); console.log('c'); Is there …

node.js command-line-interface ansi
ZPL II Extended Characters

I'm trying to print extended code page 850 characters using ZPL II to a Zebra S4M. Whenever one of the …

c# ansi zebra-printers zpl zpl-ii
Decrypting DUKPT Encrypted Track Data

As the title says, I am trying to decrypt DUKPT encrypted track data coming from a DUKPT enabled scanner. I …

ansi encryption jpos credit-card-track-data
JavaScript blob encoding as UTF-8 instead of ANSI

I use a JavaScript blob to create an FDF file which opens & fills in a locally stored PDF. However, …

javascript encoding utf-8 blob ansi
How do I display ANSI color codes in emacs for any mode?

I have a log file that uses ANSI escape color codes to format the text. The mode is fundamental. There …

emacs ansi
Initializing bit-fields

When you write struct { unsigned a:3, b:2; } x = {10, 11}; is x.b guaranteed to be 3 by ANSI C (C89)? I have …

c struct initialization ansi bit-fields