Tagged Questions
A character-encoding scheme based on the ordering of the English alphabet.
77
votes
3answers
51k views
ASCII value of a character in python
How do I get the ASCII value of a character as an int in python?
43
votes
23answers
2k views
Interview Question, What do they want to accomplish?
I was on a technical job interview today, and it was time to give me some programming exercises.
I finally came to the last question:
Given the numbers:
116 104 105 115 32 105 115 32 99 111 114 114 ...
34
votes
9answers
824 views
How to count characters in a unicode string in C
Lets say I have a string:
char theString[] = "你们好āa";
Given that my encoding is utf-8, this string is 12 bytes long (the three hanzi characters are three bytes each, the latin character with the ...
30
votes
9answers
20k views
HTML: Is there an ascii character for a up/down triangle (arrow)?
I'm looking for an html/ascii character which is a triangle up and down so that I can use it as a toggle switch.
I found ↑, and ↓ - but those have an arrow "stem". I'm looking just for the ...
26
votes
3answers
24k 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#)
24
votes
10answers
2k views
Why do we use Base64?
Wikipedia says
Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over media that are designed to deal with textual data. ...
22
votes
9answers
19k views
How to check if a string in Python is in ASCII?
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 string ...
19
votes
4answers
30k views
“unmappable character for encoding” warning in Java
I'm currently working on a Java project that is emitting the following warning when I compile:
/src/com/myco/apps/AppDBCore.java:439: warning: unmappable character for encoding UTF8
[javac] ...
18
votes
7answers
10k views
How do I convert LaTeX to plain-text (ASCII)?
Scenario:
I have a document I created using LaTeX (my resume in this case), it's compiling in pdflatex correctly and outputting exactly what I'd like. Now I need the same document to be converted to ...
17
votes
9answers
884 views
Reminder - \r\n or \n\r?
I just can't remember those. So, what is the right way to properly terminate old fashioned ASCII lines?
17
votes
2answers
7k views
Ruby 1.9 - invalid multibyte char (US-ASCII)
Im trying to make my rails application (2.3.5) to run on Ruby 1.9, I've this function that make some transformations on a string:
def replace_special_chars(downcase = true)
if downcase
string = ...
15
votes
3answers
3k views
What is a vertical tab?
What was the original historical use of the vertical tab character (\v in the C language, ASCII 11)?
Did it ever have a key on a keyboard? How did someone generate it?
Is there any language or ...
15
votes
8answers
1k views
Is there any logic behind ASCII codes' ordering?
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 ...
15
votes
4answers
1k 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 ...
13
votes
3answers
3k views
Why does Python print unicode characters when the default encoding is ASCII?
From the Python 2.6 shell:
>>> import sys
>>> print sys.getdefaultencoding()
ascii
>>> print u'\xe9'
é
>>>
I expected to have either some gibberish or an Error ...
13
votes
9answers
26k views
HTML apostrophe
Seemingly simple, but I cannot find anything relevant on the web.
What is the correct html code for an apostrophe? Is it a ’ ?
13
votes
40answers
3k views
How do you generate passwords?
Random Characters?
Passphrases?
High Ascii?
cat /dev/urandom | strings
12
votes
11answers
1k 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 ...
12
votes
8answers
14k views
How to convert UTF-8 to US-Ascii in Java
We have a system where customers, mainly European enter texts (in UTF-8) that has to be distributed to different systems, most of them accepting UTF-8, but now we must also distribute the texts to a ...
11
votes
5answers
2k views
In Java, is it possible to check if a String is only ASCII?
Character.isLetter(c) returns true if the character is a letter. But is there a way to quickly find if a String only contains the base characters of ASCII?
11
votes
11answers
767 views
Are ASCII diagrams worth my time?
Are ASCII diagrams within source code worth the time they take to create?
I could create a bitmap diagram much faster, but images are much more difficult to in line in a source file (until VS2010).
...
11
votes
2answers
1k views
C++ Confusion. Reading Integer From Text File. Convert to ASCII
I am learning C++ for the first time. I have no previous programming background.
In the book I have I saw this example.
#include <iostream>
using::cout;
using::endl;
int main()
{
int x ...
11
votes
5answers
4k views
What's the opposite of chr() in Ruby?
In many languages there's a pair of functions, chr() and ord(), which convert between numbers and character values. In some languages, ord() is called asc().
Ruby has String#chr, which works great:
...
10
votes
2answers
7k views
(grep) Regex to match non-ascii characters?
On linux i have a directory with lots of files. Some of them have nonASCII characters, but they are all valid UTF8. One programme has a bug that prevents it working with nonASCII filenames, I have to ...
10
votes
9answers
11k views
Character reading from file in Python
In a text file, there is a string "I don't like this".
However, when I read it into a string, it becomes "I don\xe2\x80\x98t like this". I understand that \u2018 is the unicode representation of "'". ...
9
votes
1answer
401 views
Best output type and coding practices for __repr__() functions?
Lately, I've had lots of trouble with __repr__(), format(), and encodings. Should the output of __repr__() be encoded or be a unicode string? Is there a best encoding for the result of __repr__() in ...
9
votes
5answers
2k views
Why is '\x' invalid in Python?
I was experimenting with '\' characters, using '\a\b\c...' just to enumerate for myself which characters Python interprets as control characters, and to what. Here's what I found:
\a - BELL
\b - ...
9
votes
4answers
8k views
Getting an ascii character code in ruby - ? fails
I'm in a situation where I need the ASCII value of a character (for Project Euler question #22, if you want to get specific) and I'm running into an issue.
Being new to ruby, I googled it, and found ...
9
votes
8answers
27k views
How to get ASCII value of string in C#
I want to get Ascii Value of string in C#
My string will have value like "9quali52ty3" this ,so if I just convert it to integer I don't get ascii values of numbers that are in the string
Can any ...
9
votes
4answers
7k 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 ...
9
votes
4answers
3k views
How do I get Emacs shell mode to either render (or ignore) my colors instead of printing ASCII codes?
The symptom of the problem looks like "[0m[27m[24m[J[34;1" which on a terminal translates into the color blue.
-A
9
votes
4answers
8k 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?
9
votes
4answers
437 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 ...
8
votes
3answers
159 views
Separating Unicode ligature characters
Throughout the vast number of unicode characters, there are some that actually represent more than one character, like the U+FB00 ligature ff for two 'f' characters. Is there any way easy to convert ...
8
votes
3answers
284 views
Can .NET convert Unicode to ASCII to remove “smart quotes”, etc?
Some of our users use e-mail clients that can't cope with Unicode, even when the encoding, etc. are properly set in the mail headers.
I'd like to 'normalise' the content they're receiving. The ...
8
votes
1answer
1k views
“Ascii85”:String
Having troubles with a rails install, keeping getting an error for this ascii85 string error
(/usr/lib/ruby/gems/1.8/gems/rails-2.3.11/lib/rails/gem_dependency.rb:277:in `==': undefined method ...
8
votes
2answers
4k views
Rails 3 invalid multibyte char (US-ASCII)
I found a similar post here but I can't solve the problem anyway.
I got this
/home/fra/siti/Pensiero/db/seeds.rb:32: invalid multibyte char (US-ASCII)
/home/fra/siti/Pensiero/db/seeds.rb:32: invalid ...
8
votes
3answers
928 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 ...
8
votes
5answers
9k views
PHP: How to remove all non printable characters in a string?
I imagine I need to remove chars 0-31 and 127,
Is there a function or piece of code to do this efficiently.
8
votes
8answers
12k 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 ...
8
votes
14answers
4k views
How do I translate 8bit characters into 7bit characters? (i.e. Ü to U)
I'm looking for pseudocode, or sample code, to convert higher bit ascii characters (like, Ü which is extended ascii 154) into U (which is ascii 85).
My initial guess is that since there are only ...
8
votes
2answers
3k views
Decoding T-SQL CAST in C#/VB.net
Recently our site has been deluged with the resurgence of the ASPRox bot SQL Injection attack. Without going into details, the attack attempts to execute SQL code by encoding the T-SQL commands in an ...
7
votes
2answers
102 views
How do I return the most similar Unicode character to a section of an image?
I made a simple converter in Python to convert images to ASCII. Right now it uses various shades of dark characters, so it works but it is hard to make out at low resolutions: for example, the Google ...
7
votes
4answers
1k views
How to handle unicode character sequences in C/C++?
What are the more portable and clean ways to handle unicode character sequences in C and C++ ?
Moreover, how to:
-Read unicode strings
-Convert unicode strings to ASCII to save some bytes (if the ...
7
votes
5answers
248 views
ASCII DOS Games, need help with Rendering methods!
I'm writing an old school ASCII DOS-Prompt game. Honestly I'm trying to emulate ZZT to learn more about this brand of game design (Even if it is antiquated)
I'm doing well, got my full-screen text ...
7
votes
1answer
663 views
Will [a-z] ever match accented characters in PREG/PCRE?
I'm already aware that \w in PCRE (particularly PHP's implementation) can sometimes match some non-ASCII characters depending on the locale of the system, but what about [a-z]?
I wouldn't think so, ...
7
votes
4answers
890 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
3answers
8k views
Unicode, UTF, ASCII, ANSI format differences
whatis the difference between Unicode, UTF8, UTF7,UTF16,UTF32,ASCII, ANSI code format of encoding in ASP.net
In what these are helpful for programmers.
7
votes
6answers
31k 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 ...
6
votes
1answer
130 views
Self reproducing program
main(a){printf(a="main(a){printf(a=%c%s%c,34,a,34);}",34,a,34);}
How it is reproducing itself after compilation? What is the role of writing 34 in printf function
Platform GCC UBUNTU 10.04