Tagged Questions

0
votes
6answers
57 views

Additional Ascii char ‘Â’ added in JSP request

Hi, I am facing the same issue in tomcat & jsp as listed in below asp issue …
2
votes
3answers
113 views

How to print non-ascii characters in Python

Hello I have a problem when I'm printing (or writing to a file) the non-ascii characters in Python. I've resolved it overriding str method in my own objects, and making "x.encode('utf-8')" inside it, …
0
votes
4answers
133 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 …
5
votes
7answers
233 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 …
1
vote
3answers
102 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
5answers
788 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.....
0
votes
1answer
113 views

Intelligent UTF-8 to UTF-7 in .NET

If I have a string of UTF-8 characters and they need to be output to an older system as UTF-7 I have two questions pertaining to this. How can I convert a string s which has UTF-8 characters to the …
2
votes
2answers
692 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 …
1
vote
6answers
597 views

C++ Extended Ascii characters

Hi All How to detect the presence of Extended ASCII values (128 to 255) in a C++ character array. Thank you
1
vote
1answer
136 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 …