0
votes
4answers
43 views
Relation between .NET Encoding and Characterset
What's relation between CharacterSet here:
http://msdn.microsoft.com/en-us/library/ms709353%28VS.85%29.aspx
and ascii encoding here:
…
0
votes
4answers
56 views
Japanese Ascii Code
Hi where can I get a list of Ascii codes corresponding to japanese kanji, hiraggana and katakana characters. I am doing a java function and javascript which determines wether it is a japanese …
5
votes
4answers
1k views
Python UnicodeDecodeError - Am I misunderstanding encode?
Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.
>>> 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
Traceback (most recent call …
2
votes
4answers
102 views
What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python
Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I …
0
votes
1answer
35 views
US-ASCII encoding with Odd and Even numbers?
I splitted the list of numbers 1-100 to files of 2 bytes. Then, I noticed that each odd number btw 11-99 needs 2 files, ie 4bytes, while each even number btw 11-99 needs 1 file, 2bytes. A file is …
0
votes
2answers
15 views
strange codes in text, like +ADs-, +AGA-, or +ACoAKg- and +ACEAIQ-
i got a dataset that uses a strange encoding for non-printables / diacritics. i'm getting hte impression that it's an artifact of some mail system. or maybe it's excel or something? anyway, the stuff …
0
votes
2answers
35 views
Percent Encoded UTF-8 to Ascii(8-bit) conversion
Im reading in urls and they often have percent encoded characters.
Example: %C3%A9 is actually é
According to …
0
votes
3answers
48 views
Are ASCII characters always encoded the same way in all character encodings?
In ASCII, the character < is encoded as a single-byte character 0x3C, what I'd like to know is that is there a character set where < is encoded differently? I tried UTF-8, it's the same. I tried …
1
vote
1answer
57 views
Issues with Chr(0) in SQL INSERT script
We currently use the SQL Publishing Wizard to back up our database schemas and data, however we have some database tables with hashed passwords that contain the null character (chr(0)). When SQL …
3
votes
7answers
268 views
Converting alphanumeric to ascii and incrementing
Hello all,
I'm stumped on how to convert 3 letters and 3 numbers to ascii and increment them by one...it's the old next-license-plate problem. Can anyone give me a nudge in the right direction?
0
votes
1answer
51 views
encoding a string to ascii
I have a long string that I want to encode to ascii. I'm doing:
s = s.encode('ascii', 'replace')
but I get:
'ascii' codec can't decode byte 0xc3 in position 2646: ordinal not in range(128)
(I've …
0
votes
4answers
860 views
Integer ASCII value to character in BASH using printf
Character to value works:
$ printf "%d\n" \'A
65
$
I have two questions, the first one is most important:
How do I take 65 and turn it into A?
\'A converts an ASCII character to its value using …
4
votes
3answers
829 views
How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?
For example, if I have a unicode string, I can encode it as an ASCII string like so:
>>> u'\u003cfoo/\u003e'.encode('ascii')
'<foo/>'
However, I have e.g. this ASCII string:
…
3
votes
7answers
7k views
How to convert a Unicode character to its ASCII equivalent
Here's the problem:
In C# I'm getting information from a legacy ACCESS database. .NET converts the content of the database (in the case of this problem a string) to Unicode before handing the content …
0
votes
1answer
32 views
ASCII ART IN WEBBROWSER
How should I do to make it print like it looks in the html document in the web browser? =/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
…
