Top "Ansi" questions

ANSI stands for American National Standards Institute.

Is it possible to use extened ASCII characters in a BAT file?

I have a bunch of dynamically created *.BAT files. These BAT files are used to create folders in a server. …

batch-file ansi extended-ascii
How can I get TStringList to sort differently in Delphi

I have a simple TStringList. I do a TStringList.Sort on it. Then I notice that the underscore "_" sorts before …

delphi sorting ansi tstringlist
How to do proper Unicode and ANSI output redirection on cmd.exe?

If you are doing automation on windows and you are redirecting the output of different commands (internal cmd.exe or …

unicode console ansi cmd io-redirection
Colored text output in PowerShell console using ANSI / VT100 codes

I wrote a program which prints a string, which contains ANSI escape sequences to make the text colored. But it …

powershell ansi windows-console vt100
PHP Ansi to UTF-8

I'm trying to create a script in PHP for converting some files to UTF-8. I have a file in Greek, …

php encoding utf-8 ansi mojibake
Convert a file encoding using R? (ANSI to UTF-8)

I wish to convert an HTML file encoded in ANSI to UTF-8, using R. Is there a tool, or a …

r encoding utf-8 ansi
Widestring to string conversion in Delphi 7

my app is a non-unicode app written in Delphi 7. I'd like to convert unicode strings to ANSI with this function : …

delphi unicode localization delphi-7 ansi
GCC options for strictest C code?

What GCC options should be set to have GCC as strict as possible? (and I do mean as strict as …

c gcc ansi iso strict
How do you convert encoding from UTF-8 to windows-1252?

How can I correctly convert a text file from UTF-8 to Windows-1252? I have tried converting the file using iconv (…

encoding ansi iconv windows-1252
Bold formatting in Python console

I have defined a list in Python code. list = ['kumar','satheesh','rajan'] BOLD = '\033[1m' for i, item in enumerate(…

python console ansi output-formatting