Tagged Questions
The extended-ascii tag has no wiki summary.
6
votes
4answers
905 views
Convert two ascii characters to their 'corresponding' one character extended ascii representation
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 create ...
5
votes
1answer
280 views
Can I use iconv to convert multi-byte smart quotes to extended ASCII smart quotes?
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 = ...
5
votes
7answers
677 views
What's the proper technical term for “high ascii” characters?
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 ...
5
votes
2answers
3k views
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, in this case 189.
Converting to Unicode results in the Unicode replacement character ...
4
votes
3answers
414 views
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 work with echo -e "\0xxx", any ideas?
3
votes
4answers
971 views
How can I display Extended ASCII Codes characters in Perl?
How to display 192 character symbol ( └ ) in perl ?
3
votes
1answer
321 views
Difficulties inherent in ASCII and Extended ASCII, and Unicode Compatibility?
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 ...
2
votes
2answers
198 views
Are extended ASCII chars [äöå] allowed in URLs?
I have seen some websites that use äöå-characters in their slugs (they don't convert them to aoo). So what's the case?
2
votes
5answers
725 views
Additional Ascii char 'Â' added in JSP request
I am facing the same issue in tomcat & jsp as listed in below asp issue
http://stackoverflow.com/questions/350429/classic-asp-gremlims-getting-a-ainserted-into-text-whenever-an-html-special-cha
...
2
votes
3answers
993 views
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 by overriding the str method in my own objects, and making "x.encode('utf-8')" inside it, ...
2
votes
6answers
3k views
How can I find extended ASCII characters in a file using Perl?
How can I find extended ASCII characters in a file using Perl? Can anyone get the script?
.....thanks in advance.....
2
votes
2answers
592 views
Recognizing extended characters using JAVACC
I'm creating a grammar using JavaCC and have run across a small problem. I'm trying to allow for any valid character within the ASCII extended set to be recognized by the resulting compiler. After ...
1
vote
1answer
74 views
converting Extended ASCII/ANSI values
I have a program that inputs text and sorts through it using a number of functions and the text should be readable regardless of the format, however, when a file saved to the Extended ASCII encoding ...
1
vote
1answer
172 views
how to pass Extended ASCII characters through JNI via C++
I am trying to use JNI via VC++ and pass a custom directory in the classpath as a UTF-8 string
-Djava.class.path=c:\myDir\my.jar
This works well and I could find the methods in the jar using ...
1
vote
2answers
432 views
How to draw a rectangle in console applicaiton?
aHi,
Never used extended ascii ,need to draw a rectangle in a console app with a number inside
Do you know of any link or know how to draw rectangles etc.. in c# using extended ascii?
This is for a ...
1
vote
3answers
813 views
Extended Ascii doesn't work in console!
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.
1
vote
2answers
375 views
Determine if a text file without BOM is UTF8 or ASCII
Long story short:
+ I'm using ffmpeg to check the artist name of a MP3 file.
+ If the artist has asian characters in its name the output is UTF8.
+ If it just has ASCII characters the output is ASCII.
...
1
vote
1answer
473 views
Line Drawing in ncurses
I've been trying to do simple line drawing (e.g. boxes) in ncurses all day, but I can't get it to work. I'm trying to print extended ASCII characters like the ones found here: ...
1
vote
2answers
452 views
Help with Extended ASCII/Encoding in PHP!
Good Evening folks.
This is my code:
static private function removeAccentedLetters($input){
for ($i = 0; $i < strlen($input); $i++) {
$input[$i]=self::simplify($input[$i]);
}
...
1
vote
2answers
618 views
Convertion from extended ascii to utf8
How do you convert an std::string encoded in extended ascii to utf8 using microsoft visual studio 2005?
I'm using google protocol buffer and it's complaining about non utf8 characters in my string if ...
1
vote
3answers
240 views
Displaying the ≥ and ≤ ASCII characters in a C Application
I am currently writing a C application and I need to display the following symbols in the terminal : ≥ and ≤
Their ASCII character codes are 242 and 243 but I can't get them to be displayed in the ...
0
votes
1answer
45 views
What character encoding are the following German words using?
I'm trying to process a German word list and can't figure out what encoding the file is in. The 'file' unix command says the file is "Non-ISO extended-ASCII text". Most of the words are in ascii, but ...
0
votes
0answers
78 views
Encode extended ASCII in Java
I tried the following JSOUP method but it encodes all the ascii characters. I want to encode only the extended ASCII characters.
For example:
[aaaäbbb] --> [aaaäbbb] (I ...
0
votes
0answers
148 views
How to display an extended character set in a c++ console application
It would be helpful to have the ability to display extended characters in my application. I am using Code::Blocks and in my console app, many symbols are not displayed properly. I may have the ...
0
votes
1answer
54 views
What is the correct SQL DataType to represent my Object?
My object is a string, implemented as an array of 1-50 US-ASCII data characters.
What SQL Data Type should I use to represent this in my database table?
I am using SQL Server Express 2008. (Does ...
0
votes
0answers
38 views
Need to prove that the extended ascii table is a local-depndend
I know that the extended ASCII table is a code-page (encoding) dependent.
In other words, the ASCII represntations on Arabic localized machine differ from french differ from Italian.
I've wrote a ...
0
votes
2answers
299 views
Ascii code generation for the combination of keys
i want to know how to get the ascii code for the combination of keys. Like i want to handle event for some unique key combination [alt+ctrl+shift].
Alternatively can you please tell me the ascii code ...
0
votes
2answers
376 views
ASCII to NSData
This is another crack at my MD5 problem. I know the issue is with the ASCII character © (0xa9, 169). Either it is the way I am inserting the character into the string or its a higher vs lower byte ...
0
votes
2answers
971 views
Console.Write() - display extended ascii chars?
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 it ...
0
votes
1answer
422 views
How to Raise Keyboard Events for Special Characters/ Extended ASCII? (Visual Basic 6)
How to a raise a keypress event for Special Character for typing extended ASCII Characters ?
Sample code snippet :
keybd_event vbKeyE, 0, KEYEVENTF_KEYDOWN, 0
Is there any alternative so that I ...
0
votes
2answers
259 views
Handling Extended ASCII in File Uploads
A website I recently completed with a friend has a gallery where one can upload images and text files. The only accepted text file (to ease development) is .txt and normally goes off without a hitch ...
0
votes
1answer
395 views
solid delta and inverted delta symbol in html
I need to display the following two symbols in an email
solid upward delta : something
like ▲
solid downward delta : ▼
But i cannot use extended-ascii set, because it causes problems in the unix ...
0
votes
3answers
893 views
How to split line at non-printing ascii character in Python
How can I split a line in Python at a non-printing ascii character (such as the long minus sign hex 0x97 , Octal 227)?
I won't need the character itself. The information after it will be saved as a ...
0
votes
1answer
133 views
Are Extended ASCII characters safe for filenames & folders?
My C# project saves files and creates folders with the extended ASCII character "²" (superscript 2). Is this safe to work with internationally? Is this something that could cause any issues with the ...
0
votes
2answers
621 views
How To Print ASCII Extended Characters Using a Const Char*?
I have a function to print characters on the screen that is like this:
void print(int colour, int y, int x, const char *string)
{
volatile char *video=(volatile char*)0xB8000 + y*160 + x*2;
...
0
votes
4answers
1k views
How to remove extended ascii using python?
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 ...
0
votes
6answers
2k views
C++ Extended Ascii characters
How to detect the presence of Extended ASCII values (128 to 255) in a C++ character array.
Thank you