Representing characters as a series of bytes
46
votes
17answers
33k views
Detect encoding and make everything UTF-8
I'm reading out lots of texts from various RSS feeds and inserting them into my database.
Of course, there are several different character encodings used in the feeds, e.g. UTF-8 and ISO-8859-1.
...
46
votes
9answers
82k views
Setting the default Java character encoding?
How do I properly set the default character encoding used by the JVM (1.5.x) programmatically?
I have read that -Dfile.encoding=whatever used to be the way to go for older JVMs... I don't have that ...
41
votes
9answers
2k views
How to reliably guess the encoding between MacRoman, CP1252, Latin1, UTF-8, and ASCII
At work it seems like no week ever passes without some encoding-related conniption, calamity, or catastrophe. The problem usually derives from programmers who think they can reliably process a “text” ...
38
votes
7answers
10k views
What's different between utf-8 and utf-8 without BOM?
What`s different between utf-8 and utf-8 without BOM? Which is better?
30
votes
5answers
6k views
Java: Why charset names are not constants?
Charset issues are confusing and complicated by themselves, but on top of that you have to remember exact names of your charsets. Is it "utf8"? Or "utf-8"? Or maybe "UTF-8"? When searching internet ...
27
votes
7answers
3k views
C programming: How to program for Unicode?
What prerequisites are needed to do strict Unicode programming?
Does this imply that my code should not use char types anywhere and that functions need to be used that can deal with wint_t and ...
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. ...
24
votes
5answers
5k views
Can I make git recognize a UTF-16 file as text?
I'm tracking a Virtual PC virtual machine file (*.vmc) in git, and after making a change git identified the file as binary and wouldn't diff it for me. I discovered that the file was encoded in ...
23
votes
5answers
9k views
What is the proper way to URL encode Unicode characters?
I know of the non-standard %uxxxx scheme but that doesn't seem like a wise choice since the scheme has been rejected by the W3C.
Some interesting examples:
The heart character.
If I type this into ...
21
votes
2answers
7k views
Character Encoding Detection Algorithm
I'm looking for a way to detect character sets within documents. I've been reading the Mozilla character set detection implementation here:
Universal Charset Detection
I've also found a Java ...
21
votes
6answers
6k views
utf-8 vs Unicode
I have heard conflicting opinions from people - according to wikipedia, see here
there are the same thing. Are they? can someone clarify?
21
votes
9answers
42k views
Java : How to determine the correct charset encoding of a stream
With reference to the following thread:
http://stackoverflow.com/questions/498636/java-app-unable-to-read-iso-8859-1-encoded-file-correctly
What is the best way to programatically determine the ...
20
votes
9answers
13k views
UTF8 to/from wide char conversion in STL
Is it possible to convert UTF8 string in a std::string to std::wstring and vice versa in a platform independent manner? In a Windows application I would use MultiByteToWideChar and ...
19
votes
9answers
18k views
What is ANSI format?
What is ANSI encoded format? Is it a system default format?
In what way does it differ from ASCII?
19
votes
7answers
11k views
Save all files in Visual Studio project as UTF-8
I wonder if it's possible to save all files in a Visual Studio 2008 project into a specific character encoding. I got a solution with mixed encodings and I want to make them all the same (UTF-8 with ...
17
votes
7answers
1k views
What's the difference between encoding and charset?
I am confused about the text encoding and charset. For many reasons, I have to
learn non-Unicode, non-UTF8 stuff in my upcoming work.
I find the word "charset" in email headers as in "ISO-2022-JP", ...
16
votes
1answer
1k views
How to change the character encoding in UIWebView?
Summary of the problem: When browsing non-English sites that does not explicitly specify the correct character encoding with UIWebView on the iOS, the page cannot be displayed correctly.
Detailed ...
16
votes
14answers
3k views
Do I really need to encode '&' as ' &'?
I'm using an '&' symbol with HTML5 and UTF-8 in my site's <title>. Google shows the ampersand fine on its SERPs, as do all the browsers in their titles.
http://validator.w3.org is giving me ...
16
votes
4answers
391 views
Java: multithreaded character stream decoding
I am maintaining a high performance CSV parser and try to get the most out of latest technology to improve the throughput. For this particular tasks this means:
Flash memory (We own a relatively ...
16
votes
7answers
1k views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely encoding used (in ...
16
votes
2answers
8k views
How to set standard encoding in Visual Studio
I am searching for a way to setup Visual Studio so it always saves my files in UTF-8.
I have only found options to set this project wide is there a way to set it Visual Studio wide?
16
votes
7answers
11k views
Is there an upside down caret character?
I have to maintain a large number of classic ASP pages, many of which have tabular data with no sort capabilities at all. Whatever order the original developer used in the database query is what ...
15
votes
2answers
356 views
How to read non-ASCII characters from CLI standard input
If I type å in CMD, fgets stop waiting for more input and the loop runs until I press ctrl-c. If I type a "normal" characters like a-z0-9!?() it works as expected.
I run the code in CMD under Windows ...
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 ...
14
votes
7answers
275 views
PHP: Convert any string to UTF-8 without knowing the original character set, or at least try
I have an application that deals with clients from all over the world, and, naturally, I want everything going into my databases to be UTF-8 encoded.
The main problem for me is that I don't know ...
13
votes
3answers
141 views
Peter Piper piped a Python program - and lost all his unicode characters
I have a Python script that loads a web page using urllib2.urlopen, does some various magic, and spits out the results using print. We then run the program on Windows like so:
python program.py > ...
13
votes
4answers
19k views
How to Find Default Charset/Encoding in Java?
The obvious answer is to use Charset.defaultCharset() but we recently found out that this might not be the right answer. I was told that the result is different from real default charset used by ...
13
votes
8answers
8k views
How do I see what character set a database / table / column is in MySQL?
How do I see what the character set that a MySQL database, table and column are in? Is there something like
SHOW CHARACTER SET FOR mydatabase;
and
SHOW CHARACTER SET FOR mydatabase.mytable;
and
...
12
votes
5answers
862 views
Why does POST not honor charset, but an AJAX request does? tomcat 6
I have a tomcat based application that needs to submit a form capable of handling utf-8 characters. When submitted via ajax, the data is returned correctly from getParameter() in utf-8. When ...
12
votes
4answers
2k views
How to download any(!) webpage with correct charset in python?
Problem
When screen-scraping a webpage using python one has to know the character encoding of the page. If you get the character encoding wrong than your output will be messed up.
People usually use ...
12
votes
11answers
16k views
How to type a new line character in SQL Server Management Studio
In the "datagrid" view of an open table of data, how can I type a new line character into an nvarchar field directly in SSMS?
Is there an alt code?
12
votes
6answers
20k views
What charset does Microsoft Excel use when saving files?
I have a Java app which reads CSV files which have been created in Excel (e.g. 2007). Does anyone know what charset MS Excel uses to save these files in?
I would have guessed either:
windows-1255 ...
12
votes
5answers
5k views
UTF8 vs. UTF16 vs. char* vs. what? Someone explain this mess to me!
I've managed to mostly ignore all this multi-byte character stuff, but now I need to do some UI work and I know my ignorance in this area is going to catch up with me! Can anyone explain in a few ...
11
votes
4answers
1k views
iconv_strlen function causing execution timeout, running on MAMP
Has anyone had issues with the iconv_strlen function while running MAMP?
11
votes
4answers
222 views
What use is the 'encoding' in the XML header?
Looking at the XML header
<?xml version="1.0" encoding="UTF-16" standalone="no"?>
Am I right to state that the encoding attribute is
coming too late (you can't read it properly unless you ...
11
votes
5answers
429 views
Showing � instead of £
the symbol � is showing instead of £ when pulling data from the mysql database
the field in question its collated to utf8_general_ci
I also have the <meta http-equiv="Content-Type" ...
11
votes
3answers
414 views
Detect browser character support in javascript?
I'm working on a music related website, and frequently use the HTML special characters for sharps (♯) and flats(♭) to keep things pretty, e.g.:
♯
♭
However, I've noticed that in ...
11
votes
4answers
8k views
Ruby on Rails 3, incompatible character encodings: UTF-8 and ASCII-8BIT with i18n
I've got some troubles with the couple Rails 3.0.1, Ruby 1.9.2 and my website localization.
The problem is quite simple, i've got something like that in a view :
f.input :zip_code, :label => ...
11
votes
3answers
1k views
What do these PHP mbstring settings do?
I'm trying to figure out exactly what these php.ini settings do. What happens when they're set to different values? When are they necessary? When are they harmful?
mbstring.language
...
11
votes
2answers
16k views
Java: Converting String to and from ByteBuffer and associated problems
I am using Java NIO for my socket connections, and my protocol is text based, so I need to be able to convert Strings to ByteBuffers before writing them to the SocketChannel, and convert the incoming ...
11
votes
2answers
3k views
What are the diffrences between utf8_general_ci and utf8_unicode_ci?
I've got two options for unicode that look promising for a mysql database.
utf8_general_ci unicode (multilingual), case-insensitive
utf8_unicode_ci unicode (multilingual), case-insensitive
Can you ...
10
votes
3answers
266 views
How do I identify if the string contains a special character which cannot be stored using a utf8-mb4 character set
Refer to this tweet and the following thread were we are trying to store a similar tweet into the database. I am unable to store this tweet in MySQL, I would like to know how to identify, if the ...
10
votes
1answer
108 views
Usage of charset in the script tag for Javascript
I need to include text of different languages in the javascript app that I'm writing, and the characters need to show up properly in different webpages that have different page encodings. The script ...
10
votes
4answers
290 views
How to make MySQL aware of multi-byte characters in LIKE and REGEXP?
I have a MySQL table with two columns, both utf8_unicode_ci collated. It contains the following rows. Except for ASCII, the second field also contains Unicode codepoints like U+02C8 (MODIFIED LETTER ...
10
votes
3answers
290 views
Apostrophe got through filter in C#
I'm really sorry to do this, but this problem represents a possibly exploitable security issue on a site I work on, so I'm posting this with a new account.
We have a script that takes in user ...
10
votes
4answers
3k views
Can I set the default string encoding on Ruby 1.9?
This might sound minor, but it's been driving me nuts. Since releasing an application to production last Friday on Ruby 1.9, I've been having lots of minor exceptions related to character encodings. ...
10
votes
3answers
493 views
Should I still use html entities? Why?
Are HTML entities still useful or should I simply create UTF-8 encoded html documents? Please explain why.
10
votes
11answers
2k views
What are all of the allowable characters for people's names?
There are the standard A-Z, a-z characters, but also there are hyphens, em dashes, quotes, etc.
Plus, there are all of the international characters, like umlauts, etc.
So, for an English-based ...
9
votes
3answers
224 views
Special chars are replaces with a square in android app
In my android app I make a simple toast
Toast.makeText(
parent.getApplicationContext(),
parent.getResources().getIdentifier(result, "string",
parent.getPackageName()), ...
9
votes
1answer
188 views
Best way to convert string to bytes in Python 3?
There appears to be two different ways to convert a string to bytes, as seen in the answers to TypeError: 'str' does not support the buffer interface
Which of these methods would be better or ...