Top "Non-ascii-characters" questions

ASCII stands for 'American Standard Code for Information Interchange'. ASCII is a character-encoding scheme based on the ordering of the English alphabet.

Remove non-ASCII non-printable characters from a String

I get user input including non-ASCII characters and non-printable characters, such as \xc2d \xa0 \xe7 \xc3\ufffdd \xc3\ufffdd \…

java non-ascii-characters
Accented characters in mySQL table

I have some texts in French (containing accented characters such as "é"), stored in a MySQL table whose collation is utf8_…

php mysql unicode utf-8 non-ascii-characters
"UnicodeEncodeError: 'ascii' codec can't encode character"

I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this: …

regex unicode python-2.6 non-ascii-characters
Using JavaScript to perform text matches with/without accented characters

I am using an AJAX-based lookup for names that a user searches in a text box. I am making the …

javascript string collation non-ascii-characters
matching unicode characters in python regular expressions

I have read thru the other questions at Stackoverflow, but still no closer. Sorry, if this is allready answered, but …

python regex unicode non-ascii-characters character-properties
Removing non-ASCII characters from data files

I've got a bunch of csv files that I'm reading into R and including in a package/data folder in .…

r unicode ascii non-ascii-characters
Replace accented characters in R with non-accented counterpart (UTF-8 encoding)

I have some strings in R in UTF-8 encoding that contain accents. E.g. string="Hølmer" or string="Elizalde-Gonzá…

r non-ascii-characters
How to fetch a non-ascii url with Python urlopen?

I need to fetch data from a URL with non-ascii characters but urllib2.urlopen refuses to open the resource and …

python unicode urllib2 non-ascii-characters urlopen
R on Windows: character encoding hell

I am trying to import a CSV encoded as OEM-866 (Cyrillic charset) into R on Windows. I also have a …

r csv encoding utf-8 non-ascii-characters
UnicodeDecodeError in Python 3 when importing a CSV file

I'm trying to import a CSV, using this code: import csv import sys def load_csv(filename): # Open file for …

python unicode csv python-3.x non-ascii-characters