2
votes
3answers
31 views
Convert Hi-Ansi chars to Ascii equivalent (é -> e) in Delphi(2007)
Is there a routine available in D2007 to convert the characters in the high range of the ANSI table (>127) to their equivalent ones in pure ASCII (<=127) according to a locale (codepage)?
I know …
2
votes
6answers
76 views
ASCII Encoding and Umlauts and Accents
Hello, I have a requiremnt to produce text files with ASCII encoding. I have a database full of Greek, French, and German characters with Umlauts and Accents. Is this even possible?
string …
0
votes
6answers
107 views
c# ascii protocol problem
i have a program that send ASCII commands to a device via a serial port. The program is a demo and doesn't do what i want.
I am just trying to get the device to respond in c# and I'm not getting …
0
votes
4answers
45 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
2answers
86 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
1answer
50 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#).
1
vote
3answers
37 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
3answers
98 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 …
2
votes
2answers
59 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. …
0
votes
4answers
50 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
84 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
114 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
2answers
16 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
56 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
1answer
36 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 …
