13
votes
3answers
4k views
ASCII value of a character in python
How do I get the ASCII value of a character as an int in python?
12
votes
11answers
454 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 student had to show how …
10
votes
8answers
2k views
What’s the nicest ASCII table you’ve seen? [closed]
So, we've all seen ASCII tables and anyone can search for one. What what's the nicest one, the cleanest, most legible, most useful ASCII table you've come across.
(i.e.) Probably not the very …
8
votes
4answers
418 views
Where is Python’s “best ASCII for this Unicode” database?
I have some text that uses Unicode punctuation, like left double quote, right single quote for apostrophe, and so on, and I need it in ASCII. Does Python have a database of these characters with …
8
votes
37answers
1k views
How do you generate passwords?
Random Characters?
Passphrases?
High Ascii?
cat /dev/urandom | strings
7
votes
4answers
232 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 like rectangle(3, …
7
votes
9answers
351 views
Is there any logic behind ASCII codes’ ordering ?
Hi,
I was teaching C to my younger brother studying engineering. I was explaining him how different data-types are actually stored in the memory. I explained him the logistics behind having …
7
votes
6answers
3k views
How to check if a string in Python is in ASCII?
Hello,
I am fighting with Python to understand how do I check whether a string is in ASCII or not.
I am aware of ord(), however when I try ord('é'), I have TypeError: ord() expected a character, but …
7
votes
4answers
1k views
How do I convert a list of ascii values to a string in python?
I've got a list in a Python program that contains a series of numbers, which are themselves ASCII values. How do I convert this into a "regular" string that I can echo to the screen?
7
votes
4answers
309 views
Are you fluent in Unicode yet?
Almost 5 years ago Joel Spolsky wrote this article, "The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)".
Like many, I read …
6
votes
10answers
379 views
How to make next step of a string. C#
The question is complicated but I will explain it in details.
The goal is to make a function which will return next "step" of the given string.
For example
String.Step("a"); // = "b"
…
6
votes
5answers
3k views
How do I convert a file’s format from Unicode to ASCII using Python?
I use a 3rd party tool that outputs a file in Unicode format. However, I prefer it to be in ASCII. The tool does not have settings to change the file format.
What is the best way to convert the …
6
votes
2answers
3k views
How can you strip non-ASCII characters from a string? (in C#)
How can you strip non-ASCII characters from a string? (in C#)
5
votes
7answers
222 views
What’s the proper technical term for “high ascii” characters?
What is the technically correct way of referring to "high ascii" or "extended ascii" characters? I don't just mean the range of 128-255, but any character beyond the 0-127 scope.
Often they're …
5
votes
7answers
546 views
How do I distinguish between ‘binary’ and ‘text’ files?
This is a duplicate of http://stackoverflow.com/questions/277521/how-to-identify-the-file-content-is-in-ascii-or-binary, but since I don't have the rep, I can't edit that question to improve it.
…
