Questions tagged [non-ascii-characters]

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.

1055 questions
0
votes
1 answer

ios - making accentuated characters to be well displayed in a file path

I have this code to get all files from a folder : - (NSMutableArray*) allFilesAtPath:(NSString *)startPath { NSMutableArray* listing = [NSMutableArray array]; NSArray* fileNames = [self contentsOfDirectoryAtPath:startPath error:nil]; if…
Oliver
  • 23,072
  • 33
  • 138
  • 230
0
votes
1 answer

Python/HTML - Accented characters not rendering properly in browser

I am trying to get a page from wikipedia's API and print that page to a file, using Python. json_data = json.loads(issue_request(params_html)) document = json_data['parse']['text']['*'].encode('utf-8') a = open('test.html',…
rmacqueen
  • 971
  • 2
  • 8
  • 22
0
votes
0 answers

Validation messages and accented characters

I've a little trouble with validation messages and accented Characters (like "è" , "à", "ò" and other). If the validation message in my model contains one of the accented characters, no message was displayed :-( I tried to use "è" instead of…
NikoDev
  • 15
  • 1
  • 9
0
votes
1 answer

Character encoding issue with accent

I have a weird issue with a php page. Here is the php When i try to view the txt file using a browser http://local.host/encoding.txt the result is…
Nicolas
  • 137
  • 1
  • 11
0
votes
0 answers

How to get accented characters to work in classic ASP generated Excel file?

I have this classic ASP code that gets data from a SQL Server database, and then creates an Excel file using Response.ContentType = "application/vnd.ms-excel". However some of the data has names with accented characters. And when I view the data…
omega
  • 40,311
  • 81
  • 251
  • 474
0
votes
1 answer

Printing accented characters from a Java program onto a linux shell

I'm running a Java program from command line in Ubuntu, and trying to print accented characters onto the console. But the characters get displayed as ? on the console. How do I make the shell display accented characters that are output from the…
Raj
  • 4,342
  • 9
  • 40
  • 45
0
votes
1 answer

Issue with Non-ASCII characters when using LINQ-to-Entities

I've got an issue with saving non-ASCII characters in my database. Now I know that are a lot of questions here about similar problems but I've done my research and I'm stuck. I also know that there's the issue of the COLLATE setting in the database,…
Daniel Grima
  • 2,765
  • 7
  • 34
  • 58
0
votes
1 answer

Does American/British use non-ASCII characters?

I am a developer who is working with Chinese characters. I am trying to convert part of my project into English. I am currently rewriting the project's internationalization module. I am unfamiliar with the standards for English, so I don't know if…
pjincz
  • 1,782
  • 1
  • 12
  • 10
0
votes
2 answers

JavaScript, jQuery, AJAX and accented characters: how to get them working?

I'm experiencing a problem with the display of accented characters via AJAX and jQuery. I'll explain it in more detail. I have a page where it has an input field. When I fill that field with 4 characters (which must be an ICAO code for an airport),…
Filipe Fonseca
  • 62
  • 1
  • 11
0
votes
1 answer

Characters with accent issue in jquery dialog autocomplete

I am trying to display the word Colón as a possible entry in an autocomplete JQuery dialog. Unfortunately, I get Colón instead. I tried to HTML escape it, but it displays Colón. How can I have this word displayed correctly? REM: The array…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
0
votes
1 answer

pygame ang non-latin chars issue

I've got such problem - when I pressing keyboard button in russian layout my application crushes with such message UnicodeEncodeError: 'ascii' codec can't encode character '\u0444' in position 40: ordinal not in range(128) code: event =…
0
votes
0 answers

What's the best way to convert an object to a string that might return unicode?

I tried to apply str to an array of objects however that gives me the known encoding error "can't convert... to string". Should I use unicode at that point?
AME
  • 2,499
  • 5
  • 29
  • 45
0
votes
2 answers

Python - How to get accented characters correct? (BeautifulSoup)

I've write a s python code with BeautifulSoup to get HTML but not getting how to solve accented characters correct. The charset of the HTML is this I've this python…
André
  • 24,706
  • 43
  • 121
  • 178
0
votes
1 answer

Codeigniter - global XSS filtering TRUE

i setted up this in my config.php: $config['global_xss_filtering'] = TRUE; the problem for me is that it removes all the accented chars like "à,ù,è,ò" is this usual? also why replacing them? how can i leave them? thanks
itsme
  • 48,972
  • 96
  • 224
  • 345
0
votes
1 answer

Crashing in StreamWithExternalResource with a filename that has accents

I have to read an image in the Pictures folder that has accents (e.g "éleá"). This name is connected with a database that has also accents. I am using those resources from a client and don't know if I can change both the database and the file…