1
vote
1answer
48 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
votes
1answer
47 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 i …
3
votes
8answers
246 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?
0
votes
1answer
30 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"
"http://www.w3.org/TR/ …
0
votes
3answers
75 views
Detect non-printable characters in JavaScript
Is it possible to detect binary data in JavaScript?
I'd like to be able to detect binary data and convert it to hex for easier readability/debugging.
After more investigation I …
1
vote
1answer
98 views
Tcl for getting ASCII code for every character in a string
I need to get the ASCII character for every character in a string. Actually its every character in a (small) file. The following first 3 lines successfully pull all a file's cont …
12
votes
11answers
447 views
ASCII strings and endianness
An intern who works with me showed me an exam he had taken in computer science about endianness issues. There was a question that showed an ASCII string "My-Pizza", and the studen …
0
votes
4answers
86 views
How to remove extended ascii using python?
In trying to fix up a PML (Palm Markup Language) file, it appears as if my test file has non-ASCII characters which is causing MakeBook to complain. The solution would be to strip …
1
vote
4answers
107 views
Convert from English Digits to Arabic ones in html page
I need to convert all English numbers that appear in a given HTML page to Arabic ones (to be independent from the user browser encoding). I prefer to use javascript or it will be g …
1
vote
3answers
97 views
Displaying the ≥ and ≤ ASCII characters in a C Application
I am currently writing a C application and I need to display the following symbols in the terminal : ≥ and ≤
Their ASCII character codes are 242 and 243 but I can't get them to be …
1
vote
3answers
37 views
Why do I get this error when I try to print something in Putty?
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 38: ordinal not in range(128)
I am downloading a website and then printing its contents...simple.
D …
0
votes
2answers
85 views
PHP input filtering - checking ascii vs checking utf8
I need to insure that all my strings are utf8. Would it be better to check that input coming from a user is ascii-like or that it is utf8-like?
//KohanaPHP
function is_ascii($str) …
2
votes
5answers
194 views
How to convert an ASCII value into a character in .NET
There are a million posts on here on how to convert a character to its ASCII value.
Well I want the complete opposite.
I have an ASCII value stored as an int and I want to display …
7
votes
4answers
219 views
ASCII “graphics” library?
Is there a platform-independent C/C++ library that can draw simple "graphics" in pure ASCII in a console program? For example (VERY roughly) I could call a function in the library …
3
votes
7answers
249 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 rig …
