ASCII stands for 'American Standard Code for Information Interchange'. ASCII is a character-encoding scheme based on the ordering of the English alphabet. Since ASCII only contains definitions for 128 characters, numerous other encoding schemes have been created to include characters from other alphabets and other symbols.
Questions tagged [non-ascii-characters]
1055 questions
0
votes
1 answer
Python non-ascii error for hashtag
I'm trying to call a C executable from Python script. Obviously, my C code has '#include's at start and that's what's giving me error when I call the C executable from Python. I use subprocess.call to call the executable as follows:
>>>…

AVJ
- 213
- 3
- 11
0
votes
1 answer
How to get a file from storage with special characters
I'm trying to read a file (PDF) from my storage in android. The path is correct, but when i try to open the file, i get a message that says that file is not found, but i know that the file is there. When files that do not have special characters…

WitaloBenicio
- 3,395
- 5
- 25
- 32
0
votes
1 answer
How can I strip non-printable unicode characters from user input in Rails 4?
I am having a problem with users copying and pasting input which leads to non-printable characters preventing MySQL from saving records. Here's the error:
Mysql2::Error: Incorrect string value: '\xE2\x80\x8B\xE2\x80\x8B...' for column 'address' at…

Ten Bitcomb
- 2,316
- 1
- 25
- 39
0
votes
1 answer
picker() from manipulate package with accented characteres
I'm using the picker() function to manipulate a ggplot2 line graph. I have strings with accented characters in the list given to picker. When I select a string with accented characters, ggplot() returns
Error in plot.window(xlim, ylim, log = log,…

jplcva
- 1
- 1
0
votes
1 answer
Perl Accented character to Normal Character
I Have a Set of Accented Character like
I have to convert all the Accented Character to normal Character.
If i give àáâãäåæ or ÀÁÂÃÄÅ it should come normal 'a' or 'A'.
Please give any suggestion.

depsai
- 405
- 2
- 14
0
votes
1 answer
Replace word with word with umlaut in RTF and C#
I'm working with a RTF-template. In this template there are a few places where text need to be replaced. This works fine, when using ASCII chars. When I use non-ASCII chars, the chars changes to question marks.
My program code:
memo =…

Pim_D
- 89
- 1
- 10
0
votes
1 answer
python syntax error : non-ascii character
Hi I'm trying understand why I'm getting this error.
when I deploy my project on google appengine, getting error like below
SyntaxError: Non-ASCII character '\xea' in file /base/data/home/apps/s~frikijihyo/1.377756632466273994/app/controllers.py on…

user3917240
- 1
- 1
- 1
0
votes
1 answer
Outlook Attachment.SaveAsFile with accented filename results in file not found
I have an email message with an image attachment that I want to save with a VBA macro. The file name and the display name show French accents in the attachment name (e.g. "Événement.jpg").
Saving the attachment with Outlook VBA works:
Dim fso As…

ShutterFreak
- 41
- 8
0
votes
1 answer
Spring RestTemplate is not preserving accent characters
I have been trying to use accent characters in URL to call SOLR.
My Url looks like this:
"http://host:8983/solr/principal/select?q=**name:%22Michaël.e%22**"
When fire the URL from browser I get the correct result but when try from…

prasad
- 13
- 7
0
votes
1 answer
Replace special characters with their ASCII equivalent in C# Silverlight
I have a problem with replaceing non-ASCII characters to their ASCII equivalent.
I can do that simply in Windows Forms, using something like this:
Encoding.UTF8.GetString(Encoding.GetEncoding("Cyrillic").GetBytes("Crazy text with żźćńąśłęó and other…

Marek
- 49
- 1
- 7
0
votes
1 answer
Non ASCII character in ASP.NET MVC 2
I have a MVC 2 application. is added in web.config and in master page. But the Non-ASCII characters still can not…

Don
- 1,532
- 4
- 24
- 47
0
votes
1 answer
Error with UnicodeDecodeError
I get this error when i try to run my jabber bot.
File "modules/xmpp/dispatcher.py", line 16, in Process
self.Stream.Parse(data)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xc5 in position 32: invalid continuation byte
The error is in…

Mahmoud Al Nafei
- 349
- 1
- 3
- 9
0
votes
1 answer
python - Converting a non-ascii character to a specific character
Hello everyone and thanks for your time !
I have iso-8859-1 html files as input, with html entities in place of non-ascii characters, which is neat. Except for only one character : œ (00C9 unicode codepoint, just in case it doesnt display). I want…

Petit Lama
- 125
- 8
0
votes
1 answer
How to convert French accented words into codes for Magento 1.8?
I have two versions for my store - English and French. And I am doing the translation from English to French in app/locale/fr_FR/Mage_Page.csv
I notice that I have to use some codes for certain French characters, such as En-tête de page for tête de…

Run
- 54,938
- 169
- 450
- 748
0
votes
2 answers
CXF JaxWs Endpoint fail with 'The given SOAPAction does not match an operation' when the action contains accents
I have an issue with SOAPAction that contains accents.
From a third-party WSDL, I have generated Java Classes using CXF wsdl2java plugin. Using the generated classes, I have developed a CXF-based client and server. The problem is that the server…

Younes
- 1,635
- 1
- 19
- 33