Top "Ascii" questions

A character-encoding scheme based on the ordering of the English alphabet.

Converting EBCDIC to ASCII in java

I am supposed to convert an EBCDIC file to ASCII by using Java. So far I have this code: public …

java ascii inputstream cobol ebcdic
htop output to human readable file

I've tried piping htop to a text file (e.g. htop > text.txt) but it gives me text garbled …

formatting ascii human-readable htop
Why is '\x' invalid in Python?

I was experimenting with '\' characters, using '\a\b\c...' just to enumerate for myself which characters …

python string ascii backslash control-characters
How to convert from EBCDIC to ASCII in C#.net

I have a value in EBCDIC format "000000{". I want to convert it into a.Net Int32 type. Can anyone let …

c# ascii ebcdic
How to identify the file content as ASCII or binary

How do you identify the file content as being in ASCII or binary using C++?

c++ ascii binaryfiles file-format
Windows ASCII Character/HTML Entity/Unicode

I was wondering if there is a HTML entity code or ASCII Character for the windows logo. The one that …

unicode ascii html-entities
Oracle: Pattern for to_char(number) to add additional ascii characters?

Using the Oracle to_char(number) function, is it possible to append ascii characters to the returned string? Specifically, I …

oracle formatting numbers ascii oracle-apex
Assign ASCII character to wire in Verilog

I understand that you can declare a string in a Verilog test bench as follows: reg [8*14:1] string_value; initial string_…

string ascii verilog system-verilog
Storing a string as UTF8 in C#

I'm doing a lot of string manipulation in C#, and really need the strings to be stored one byte per …

c# .net string utf-8 ascii
Sorting a String Array Alphabetically C++

I'm trying to write a program that is given the following structures: struct aPlayer { string name; // name of player int …

c++ string sorting ascii alphabetical-sort