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 ...
0
votes
1answer
20 views
How to display non-ascii in emacs?
I am looking at text files of Portuguese words in firefox, and I see accented characters correctly, but when I download the text files and open them in emacs, I see n\372mero (which is número), ...
2
votes
1answer
36 views
Python Translation Poetry Ascii Trouble
I'm trying to figure out a way to deal with special characters that can not be found in the standard Ascii chart. I'm doing some translation poetry to become familiar with the httplib and urllib ...
1
vote
1answer
31 views
How to deal with Non-ASCII Warning when performing Save on Python code edited with IDLE?
I frequently edit Python code using IDLE and occasionally when I perform a Save I receive an I/O Warning.
I am assuming that I have inadvertently added a Non-ASCII character, and I do not really ...
0
votes
1answer
57 views
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 ...
0
votes
1answer
41 views
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 ...
0
votes
1answer
42 views
In matlab, how can I read non ASCII characters (e.g. $) from a file?
I tried loading a file that contains $ in some lines and I got the following error.
Error using load
Unknown text on line number 1 of ASCII file C:....\fileName.txt
"Draw$1".
...
0
votes
2answers
108 views
How to replace non-Ascii characters from input with something else in JavaScript
I am implementing a chat-function to a JavaScript game using WebSocket. I want to replace non-ascii characters the user has written in the input textfield with other letters. Ä is replaced with a and ...
1
vote
1answer
47 views
Convert char array to string (including non printable characters) in C?
Say I have the following:
static const unsigned char key[] = {
0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff
};
How do I convert this into a ...
-2
votes
1answer
26 views
Nice ASCII representations for Non-ASCII characters?
For full name --> user name conversion, I need a mapping UTF-8 --> ASCII.
For instance:
Michael März ==> Michael Maerz ==> michael.maerz
as well as romanization of chinese characters
Is there a ...
0
votes
0answers
37 views
Euro sign and non ASCII nordic chars together in TCPDF
My output PDF includes some none ASCII nordic chars like Ø, also I need to show euro sign . When I set the character set to ISO-8859-1 or ISO-8859-15 It wont show the euro sign. and in utf-8 I lose ...
3
votes
4answers
86 views
’ is being displayed instead of -
’ is being displayed instead of - in php page
I tried using different encoding types like:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
and
<meta ...
3
votes
1answer
79 views
Detect Japanese character input and “Romajis” (ASCII)
I would like to be able to detect when the user:
Inputs Japanese characters (Kanji or Kana)
Inputs Roman characters (exclusively)
Currently I am using the ASCII range like this (C# syntax):
...
0
votes
2answers
77 views
handle non ascii code string in python
It is really confusing to handle non-ascii code char in python. Can any one explain?
I'm trying to read a plain text file and replace all non-alphabetic characters with spaces.
I have a list of ...
1
vote
0answers
64 views
Android search for non ascii cyrillic characters
I'm developing an app that is highly localized for my country, Macedonia. Over here we use Cyrillic alphabet. So the user needs to search for venues trough a search view.
How to search for Cyrillic ...
2
votes
4answers
67 views
Reading unicode txt in java
I am trying to extract data from a .txt file that was encoded in Unicode because there are accents in it (French names). Below is a portion of my code. The output of string postalCode has weird ...
3
votes
5answers
134 views
Python regex to match non-ascii names
I'm trying to validate name fields with the re module.
\w doesn't match non-ascii chars such as à.
It seems that in many other regex engines, the solution would have been \p{L}, but this isn't ...
0
votes
1answer
23 views
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: ...
0
votes
2answers
200 views
how to remove non-ascii char using sed
I want to remove non-ascii char from some file. Can you please help me to find out the proper way to do it.
I have already tried these many regexs.
sed -e 's/[\d00-\d128]//g' (not working)
cat ...
0
votes
3answers
270 views
Url Decode T-SQL function not translating out of ascii scope characters
I'm using this function to decode url encoded string :
ALTER FUNCTION [dbo].[UrlDecode](@url varchar(3072))
RETURNS varchar(3072)
AS
BEGIN
DECLARE @Position INT,
@Base CHAR(16),
...
-2
votes
1answer
94 views
£ Is not part of ASCII? [closed]
I am trying to run a command line program on windows and i cant seem to find out why the £ isnt part of ASCII, can someone tell me how to represent a £ in python/ascii?
1
vote
1answer
293 views
In Perl, How do I replace UTF8 characters, such as \x91, \x{2018}, \x{2013}, \x{2014} with simple ASCII chars?
I'm working with various articles and the problem I'm having is that various authors use various characters for punctuation characters.
For example, several documents that I'm currently work with ...
0
votes
0answers
48 views
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?
8
votes
2answers
204 views
Char (non ascii) in Matlab
I have three characters (bigger than 127) and I need to write it in a binary file.
For some reason, MATLAB and PHP/Python tends to write a different characters.
For Python, I have:
s = ...
0
votes
1answer
146 views
Convert non-ascii hyphen to ascii in Scala
In my Scala web app I am parsing a URL parameter which normally contains hyphens. In some instances the parameter is coming through with non-ascii hyphens, i.e.
11157‑007‑9120‑9
instead of
...
0
votes
2answers
189 views
Remove non-ascii characters from a variable in shell script
I am grep'ing the output of a command inside shell script and store the result in a variable.
There is a very corner case where this variable might have non-ascii characters because of parse logic ...
0
votes
0answers
89 views
Loading non-ascii characters with mysql infile
I have a utf-8_general_ci column. When I insert a column via "INSERT INTO mytable (column) value ('MÃLL')" everything is fine and the row gets inserted.
I am trying to do bulk inserts with the ...
0
votes
0answers
57 views
Unusual behavior of collectstatic command when use call_command
when using
python manage.py collectstatic
it executes properly but when i do something like
call_command('collectstatic', interactive=False)
from django shell. It throws an exception
'ascii' ...
0
votes
1answer
89 views
Match against non-ascii chars without recurring to external binaries [closed]
Suppose I have the following regex in grep:
grep -E 'head \x1E tail'
I can make grep aware of non-ascii characters using its personal escape code, \x.
Can I do the same with Bash, without calling ...
6
votes
1answer
155 views
Server implementation of RFC 2388 multipart POST conflict with RFC 2047?
I'm trying to implement RFC 2388 on a HTTP server to support multipart POST.
I am looking at the specification specifically at the content-disposition's "name" parameter.
Under section 3 of RFC ...
2
votes
2answers
231 views
Diatric string conversion in Oracle – TO_ASCII alternative in Oracle
I need to convert strings with diatrics to as ASCII version of it.
As an example the string “Caicó” is converted to “Caico” and “À bientôt” is converted to “A bientot”. It’s a usual problem with lots ...
0
votes
5answers
328 views
Java's charsets
I have a file in Spanish so it's full of characters like:
á é í ó ú ñ Ñ Á É Í Ó Ú
I have to read the file, so I do this:
fr = new FileReader(ficheroEntrada);
BufferedReader rEntrada = new ...
4
votes
3answers
242 views
PERL to count non-printable characters
I have 100,000's of files that I would like to analyze. Specifically I would like to calculate the percentage of printable characters from a sample of the file of arbitrary size. Some of these files ...
3
votes
1answer
341 views
How to match accented characters with a regex in Python?
I need the solutions to this question, except for Python! I've tried installing the regex library for Python, as apparently that enables the use of POSIX expressions in Python's regexes, but ...
2
votes
1answer
76 views
Zope ftp-upload error with non-ascii filenames
When I try to upload files with non-ascii characters (like German umlauts) to Zope (into the ZODB) via FTP, I get the following error-message:
ERROR Zope.SiteErrorLog 1351502922.570.290289062967 ...
1
vote
2answers
482 views
C# Reading a stream that may have non-ASCII characters
I have an application that reads string data in from a stream. The string data is typically in English but on occasion it encounters something like 'Jalapeño' and the 'ñ' comes out as '?'. In my ...
0
votes
1answer
51 views
Showing '$' character not using '$' in HTML
Is there any way that I show '$' (or any ascii character) without using '$'?
I mean, with TeX, 'k' is the same as ^^+. And I wonder if there is similar way to do in HTML.
1
vote
4answers
351 views
how to print non-ASCII characters in C
I try to output the list of characters with C:
http://www.alt-codes.net/
for (i=0; i<len; i++){
printf("%d\t: %c", i, i);
}
The problem that for all non-ASCII chars I got ? working on ...
3
votes
3answers
1k views
Validate email address in Javascript, and compatible with non-ASCII characters
There are many regexes which can be used to validate email address, but most of them aren't compatible with non-ASCII characters. Once an email address contains non-ASCII characters like ...
0
votes
1answer
70 views
How to handle special UTF8 Characters in body_html while updating a product?
I am updating products using the API. However when there is a non-ASCII (greater than 0x7f) in the body_html field, the product does not get updated.
for example:
body_html: "<b>Acer’s ...
1
vote
3answers
448 views
Desperately trying to remove this diabolical excel generated special character from csv in ruby
My computer has no idea what this character is. It came from Excel.
In excel it was a weird space, now it is literally represented by several symbols viz. my computer has no idea what it is.
This ...
3
votes
2answers
488 views
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 reading
file = open(filename, 'r')
# Read in file
...
0
votes
0answers
177 views
Replacing Non-ASCII characters
I need to write a helper method to generate a username for a given name-surname couple, such that it should return "amyfarrah.fowler" for name = "Amy Farrah" and surname = "Fowler".
How can i be sure ...
0
votes
1answer
174 views
Sed not working with special Characters
I have a sample text file with some numbers encoded as Non Ascii characters. I Have the character map used to encode the file but when I am using sed to replace each of these characters, I am getting ...
1
vote
0answers
94 views
JAXB xjc tool and non-ascii characters
I have an xsd scheme which contains non-ascii characters.
I want to generate classes but force the xjc tool NOT to convert those characters to unicode format (\uXXXX), and just leave them as is.
...
0
votes
3answers
236 views
How can I copy from the browser and paste to vim without unicode problems
This happens to me all the time: I copy something from a rich text screen (usually a browser) and then paste it into vim. Usually its a code block and then when I go to compile or run or what have you ...
7
votes
1answer
188 views
LINQ-to-Entities with 8-bit ASCII data
I have an interesting issue handling 8-bit "ASCII" characters in LINQ-to-Entities and am hoping someone can give me a tip.
I have inherited a SQL Server 2000 database that has some pseudo-encrypted ...
0
votes
2answers
178 views
Inserting non-ASCII characters using the :before pseudo element
I have an input field inside a span, so that I can put a pound sign before all input fields in a span with the priceField class. However, because the pound symbol is a special character, I can't get ...
1
vote
2answers
277 views
IDL: read ascii header of binary file
I'm having an enforced introduction to idl trying to debug some old code.
I have a binary image file that has an ascii header (It's a THEMIS IR BTR image of Mars, if that is of interest). The code ...
0
votes
0answers
747 views
How to detect and replace non-printable characters from table?
I have imported data from xls file into table. but there are some garbage (non ascii charactors).
I want to remove those non printable characters from database.
here is the query i found which can ...
0
votes
4answers
704 views
Printing non-ascii characters in python/jinja
The following code works correctly:
from jinja2 import Template
mylist = ['some text \xc3']
template = Template('{{ list }}')
print template.render(list=mylist)
When I run it, it outputs:
...
