Top "Extended-ascii" questions

A catch-all term for character encodings that are supersets of ASCII.

How to print the extended ASCII code in java from integer value

public static void main(String[] args) { int i=153; int j=63; System.out.println((char)i); System.out.println((char)j); } …

java character-encoding extended-ascii
How to draw a rectangle in console application?

I need to draw a rectangle, with a number inside, in a C# console app and using extended ASCII. How …

c# .net console console-application extended-ascii
How to use symbols of extended ASCII table in C?

I've been tried to print Extended ASCII characters: http://www.theasciicode.com.ar/ But all those symbols were printed as …

c character ascii extended-ascii
How can I convert extended ascii to a System.String?

For example: "½" or ASCII DEC 189. When I read the bytes from a text file the byte[] contains the valid value, …

c# .net extended-ascii
How to print non-ASCII characters in Python

I have a problem when I'm printing (or writing to a file) the non-ASCII characters in Python. I've resolved it …

python extended-ascii
Extended Ascii in Linux

How would I print these characters in Linux? │ (ascii 179) ├ (ascii 195) └ (ascii 192) ─ (ascii 196) I cannot find any octal values that would …

linux extended-ascii
C++ Extended Ascii characters

How to detect the presence of Extended ASCII values (128 to 255) in a C++ character array.

c++ extended-ascii
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
Python: How to print a 'block' using ASCII #219 in Mac

I use python on Mac OS X, and I want to use an extended ASCII symbol #219 like in this table : …

python macos extended-ascii