Tagged Questions
6
votes
4answers
909 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
7answers
681 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 ...
3
votes
4answers
980 views
How can I display Extended ASCII Codes characters in Perl?
How to display 192 character symbol ( └ ) in perl ?
3
votes
1answer
322 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
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
3answers
824 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
380 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
2answers
454 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
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
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
3answers
902 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
134 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
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 ...