extended-ascii Questions

5

Solved

How would I print these characters in Linux? │ (ascii 179) ├ (ascii 195) └ (ascii 192) ─ (ascii 196) I cannot find any octal values that would work with echo -e "\0xxx", any ideas?
Rotator asked 7/4, 2011 at 17:1

5

Solved

I need to draw a rectangle, with a number inside, in a C# console app and using extended ASCII. How do I go about it? This is for a demo.
Gaskin asked 15/5, 2011 at 5:12

5

Solved

How to display 192 character symbol ( └ ) in perl ?
Pisci asked 20/9, 2010 at 15:40

1

Solved

Does anyone know why the design decision of having '[' and ']' or '{' and '}' ASCII key codes being two apart instead of one digit was made? OCD triggered.
Tao asked 3/2, 2020 at 21:12

2

Solved

About ASCII_8BIT Encoding::ASCII_8BIT is a special encoding that is usually used for a byte string, not a character string. But as the name insists, its characters in the range of ASCII are cons...
Cohbath asked 18/9, 2019 at 21:39

1

Solved

I'm looking for a table which contains ASCII characters and same looking UTF8 characters. I know it also depends on the font is they look the same, but something generic to start with is enough. &...
Triviality asked 22/10, 2017 at 7:50

8

Solved

What is the technically correct way of referring to "high ascii" or "extended ascii" characters? I don't just mean the range of 128-255, but any character beyond the 0-127 scope. Often they're ca...

5

Solved

I have a problem when I'm printing (or writing to a file) the non-ASCII characters in Python. I've resolved it by overriding the str method in my own objects, and making "x.encode('utf-8')" inside ...
Habergeon asked 10/11, 2009 at 10:48

4

Solved

public static void main(String[] args) { int i=153; int j=63; System.out.println((char)i); System.out.println((char)j); } OUTPUT:- ? ? I have some ideas why is this strange output.. But can an...
Sneed asked 8/3, 2014 at 18:6

1

Solved

I want to encode the string "QuiÑones" in a Code 128 bar code. Is it possible to include extended ASCII characters in the Code 128 encoding? . I did some research on Google which suggested that it...
Entertaining asked 31/1, 2014 at 8:24

2

Solved

I'm writing a .NET regular expression that needs to match all ASCII and extended ASCII characters except for control characters. To do this, I consulted the ASCII table and it seems that all thes...
Cheder asked 5/3, 2015 at 14:44

4

Solved

How can I print an Extended-ASCII character to the console. For instance if I use the following puts 57.chr It will print "9" to the console. If I were to use puts 219.chr It will only displ...
Woolgrower asked 24/2, 2015 at 12:42

4

Solved

For example: "½" or ASCII DEC 189. When I read the bytes from a text file the byte[] contains the valid value, in this case 189. Converting to Unicode results in the Unicode replacement character...
Metempsychosis asked 20/3, 2009 at 14:28

3

I am writing a windows application. am facing problem in converting Extended ASCII[128-256] to its decimal equivalent. when i receive the extended ASCII say for example "Œ" from a jar file, it com...
Verticillaster asked 17/8, 2012 at 13:12

1

Solved

I have thousands of name in a mysql database that have the extended ASCII code in them. I want to convert them to a normal english alphabet. Here is an example : Indāpur Jejūri convert to -> Indap...
Democratic asked 24/3, 2014 at 1:41

1

I am making some assumptions here on technology based on what I know, but other technology recommendations are welcome. My goal: Write an ANSI Art viewer that as closely as possible resembles view...
Mcdaniel asked 21/8, 2013 at 22:30

1

Solved

I've been tried to print Extended ASCII characters: http://www.theasciicode.com.ar/ But all those symbols were printed as question-character on the white background ?. I use the following cycle ...
Defloration asked 28/6, 2013 at 10:22

1

Solved

I have some UTF-8 content that includes multi-byte smart quote characters. I've found that this code will easily convert those characters to ASCII straight quotes (ASCII code 34): $content = iconv...
Levitan asked 22/5, 2011 at 10:24

3

Solved

For example System.out.println("╚"); displays as a ?, same goes for System.out.println("\u255a"); Why doesn't this work? Stdout does indeed support these characters so I don't get it.
Reynold asked 24/2, 2011 at 4:7

2

Solved

I am able to correctly display the standard ASCII symbols (up to 127) like "heart", "note" you know what I mean. I would like to also display ones that I can use for drawing walls (like U0205) but ...
Diaeresis asked 16/10, 2010 at 7:51

1

What are the difficulties inherent in ASCII and Extended ASCII and how these difficulties are overcome by Unicode? Can some one explain me the unicode compatibility? And what does the terms assoc...
Vamp asked 25/8, 2010 at 19:55

4

Solved

The problem: I have two fixed width strings from an external system. The first contains the base characters (like a-z), the second (MAY) contain diacritics to be appended to the first string to cre...
Debag asked 9/3, 2010 at 11:36

6

Solved

How can I find extended ASCII characters in a file using Perl? Can anyone get the script? .....thanks in advance.....
Buiron asked 19/5, 2009 at 10:17

4

In trying to fix up a PML (Palm Markup Language) file, it appears as if my test file has non-ASCII characters which is causing MakeBook to complain. The solution would be to strip out all the non-A...
Carswell asked 6/11, 2009 at 5:54
1

© 2022 - 2024 — McMap. All rights reserved.