0
votes
4answers
27 views
Using PHP to Convert ASCII Character to Decimal Equivalent
Can someone suggest a (preferably) graceful way to convert an ASCII character to its decimal equivalent using PHP?
0
votes
1answer
43 views
does .net provides api to convert ascii to bcd?
Platfrom 3.5 .net.(c#)
please refer me to code which converts ascii to bcd (c#).
2
votes
2answers
44 views
Python: How to get StringIO.writelines to accept unicode string?
I'm getting a
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 34: ordinal not in range(128)
on a string stored in 'a.desc' below as it contains the '£' character. …
1
vote
3answers
34 views
How to use TRACE with ascii under unicode MFC environment?
I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this
TRACE(TEXT("Hey! we got a problem!\n"));
It works fine if everything is …
0
votes
2answers
68 views
Simple caesar cipher in java
Hey I'm making a simple caesar cipher in Java using the formula [x-> (x+shift-1) mod 127 + 1] I want to have my encrypted text to have the ASCII characters except the control characters(i.e from …
0
votes
3answers
94 views
Reading characters outside ASCII.
A friend of mine showed me a situation where reading characters produced unexpected behaviour. Reading the character '¤' caused his program to crash. I was able to conclude that '¤' is 164 decimal so …
0
votes
4answers
47 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
66 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 …
2
votes
4answers
108 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
3answers
49 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
61 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 …
0
votes
1answer
52 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
2answers
40 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 …
3
votes
8answers
253 views
how is 65 translated to ‘A’ character?
In ASCII, i wonder how is 65 translated to 'A' character?
As far as my knowledge goes, 65 can be represented in binary but 'A' is not. So how could this conversion happen?
