Tagged Questions
UTF-8 is a character encoding that can describe the set of Unicode code points in byte sequences of one to four bytes. It was designed to be backward compatible with ASCII while still supporting representation of all Unicode code points.
181
votes
7answers
37k views
Why does modern Perl avoid UTF-8 by default?
I wonder why most modern solutions built using Perl don't enable UTF-8 by default.
I understand there are many legacy problems for core Perl scripts, where it may break things. But, from my point of ...
73
votes
9answers
39k views
How to get UTF-8 working in java webapps?
I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.
My setup is the ...
63
votes
6answers
2k views
What is normalized UTF-8 all about?
The ICU project (which also now has a PHP library) contains the classes needed to help normalize UTF-8 strings to make it easier to compare values when searching.
However, I'm trying to figure out ...
46
votes
9answers
81k 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 ...
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?
32
votes
10answers
5k views
UTF8, UTF16, and UTF32
What are the differences between UTF8, UTF16, and UTF32. I understand that all 3 will store Unicode, and that how it stores the chars is different, but is there an advantage to choosing one over the ...
32
votes
8answers
16k views
Best way to convert text files between character sets?
What is the fastest, easiest tool or method to convert text files between character sets?
Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.
Everything goes: one-liners in ...
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 ...
26
votes
8answers
2k views
Should Unicode be allowed in usernames?
Why do most (all?) websites only support usernames in ASCII? Are there any security considerations if an admin decides to start accepting Unicode usernames?
25
votes
8answers
7k views
Elegant way to search for UTF-8 files with BOM?
For debugging purposes, I need to recursively search a directory for all files which start with a UTF-8 byte order mark (BOM). My current solution is a simple shell script:
find -type f |
while read ...
23
votes
5answers
1k views
Am I correctly supporting UTF-8 in my PHP apps?
I would like to make sure that everything I know about UTF-8 is correct. I have been trying to use UTF-8 for a while now but I keep stumbling across more and more bugs and other weird things that make ...
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 ...
22
votes
10answers
13k views
How do I determine file encoding in OSX?
I'm trying to enter some UTF-8 characters into a LaTeX file in TextMate (which says its default encoding is UTF-8), but LaTeX doesn't seem to understand them. Running cat my_file.tex shows the ...
21
votes
4answers
4k views
Unicode characters in URLs
In 2010, would you serve URLs containing UTF-8 characters in a large web portal?
Unicode characters are forbidden as per the RFC on URLs (see here). They would have to be percent encoded to be ...
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?
20
votes
6answers
477 views
Unicode hell (on Windows) [closed]
Today I woke up and felt something was awfully wrong with my code and every library I've ever used, and I think I was right... (or please point out where my reasoning is wrong)
Let's start I decade ...
20
votes
6answers
29k views
Unicode (utf8) reading and writing to files in python
I'm having some brain failure in understanding reading and writing text to a file (Python 2.4).
# the string, which has an a-acute in it.
ss = u'Capit\xe1n'
ss8 = ss.encode('utf8')
repr(ss), ...
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
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] ...
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 ...
19
votes
7answers
10k views
Outlook autocleaning my line breaks and screwing up my email format
I'm sending an email using the dotnet framework. Here is the template that I'm using to create the message:
Date of Hire: %HireDate%
Annual Salary: %AnnualIncome%
Reason for Request: ...
18
votes
6answers
15k views
How can I output UTF-8 from Perl?
I am trying to write a Perl script using the "utf8" pragma, and I'm getting unexpected results. I'm using Mac OS X 10.5 (Leopard), and I'm editing with TextMate. All of my settings for both my ...
17
votes
5answers
765 views
Characters “ي” and “ی” and the difference in persian - Mysql
I'm working on a UTF-8 Persian website with integrated mysql database. All the content in the website are imported through an admin panel and it's all persian.
As you might know arabic language has ...
17
votes
5answers
3k views
Really Good, Bad UTF-8 example test data
So we have the XSS cheat sheet to test our XSS filtering - but other than an example benign page I can't find any evil or malformed test data to make sure that my UTF-8 code can handle missbehaving ...
17
votes
14answers
9k views
How to create a UTF-8 string literal in Visual C++ 2008
In VC++ 2003, I could just save the source file as UTF-8 and all strings were used as is. In other words, the following code would print the strings as is to the console. If the source file was saved ...
17
votes
8answers
22k views
What's the best way to export UTF8 data into Excel?
So we have this web app where we support UTF8 data. Hooray UTF8. And we can export the user-supplied data into CSV no problem - it's still in UTF8 at that point. The problem is when you open a typical ...
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
5answers
6k views
MySQL “incorrect string value” error when save unicode string in Django
I got strange error message when tried to save first_name, last_name to Django's auth_user model.
Failed examples
user = User.object.create_user(username, email, password)
user.first_name = u'Rytis'
...
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
10answers
21k views
Problem with Java properties utf8 encoding in Eclipse
I've recently had to switch encoding of webapp I'm working on from ISO-xx to utf8. Everything went smooth, except properties files. I added „-Dfile.encoding=UTF-8“ in eclipse.ini and normal files work ...
15
votes
1answer
294 views
How do I sanitize invalid UTF-8 in Perl?
My Perl program takes some text from a disk file as input, wraps it in some XML, then outputs it to STDOUT. The input is nominally UTF-8, but sometimes has junk inserted. I need to sanitize the output ...
15
votes
3answers
9k views
Write to utf-8 file in python
I'm really confused with the codecs.open function. When I do:
file = codecs.open("temp", "w", "utf-8")
file.write(codecs.BOM_UTF8)
file.close()
It gives me the error
UnicodeDecodeError: 'ascii' ...
15
votes
3answers
8k views
UTF-8 validation
I'm processing some data files that are supposed to be valid UTF-8 but aren't, which causes the parser (not under my control) to fail. I'd like to add a stage of pre-validating the data for UTF-8 ...
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 ...
14
votes
2answers
404 views
How to make Mason 2 UTF-8 clean?
There is a nice guide in Four easy steps to make Mason UTF-8 Unicode clean with Apache, mod_perl, and DBI - how to make the old HTML::Mason UTF-8 transparent. Now, Mason 2 has arrived. How do I make ...
14
votes
8answers
2k views
How to handle user input of invalid UTF-8 characters?
I'm looking for general a strategy/advice on how to handle invalid UTF-8 input from users.
Even though my webapp uses UTF-8, somehow some users enter invalid characters. This causes errors in PHP's ...
14
votes
7answers
2k views
How can I avoid putting the magic encoding comment on top of every UTF-8 file in Ruby 1.9?
I have a Rails project with a lot of Cyrillic strings in it.
It worked fine on Ruby 1.8, but Ruby 1.9 assumes source files are US-ASCII-encoded unless you provide an # encoding: utf-8 comment at the ...
14
votes
3answers
23k views
JSON character encoding
I am writing a webservice that uses json to represent its resources, and I am a bit stuck thinking about the best way to encode the json. Reading the json rfc (http://www.ietf.org/rfc/rfc4627.txt) it ...
14
votes
3answers
3k views
Light C Unicode Library
Im looking for a small C library to handle utf8 strings.
Specifically, splitting based on unicode delimiters for use with stemming algorithms.
Related posts have suggested:
ICU ...
13
votes
3answers
139 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
2answers
508 views
Checklist for going the Unicode way with Perl
I am helping a client convert their Perl flat-file bulletin board site from ISO-8859-1 to Unicode.
Since this is my first time, I would like to know if the following "checklist" is complete. ...
13
votes
6answers
949 views
Is there any reason to prefer UTF-16 over UTF-8?
Examining the attributes of UTF-16 and UTF-8, I can't find any reason to prefer UTF-16.
However, checking out Java and C#, it looks like strings and chars there default to UTF-16. I was thinking that ...
13
votes
1answer
575 views
What new Unicode functions are there in C++0x?
It has been mentioned in several sources that C++0x will include better language-level support for Unicode(including types and literals).
If the language is going to add these new features, it's only ...
13
votes
4answers
5k views
SQLite, python, unicode, and non-utf data
I started by trying to store strings in sqlite using python, and got the message:
sqlite3.ProgrammingError: You must
not use 8-bit bytestrings unless you
use a text_factory that can interpret
...
13
votes
5answers
22k views
How to write a UTF-8 file with Java?
I have some current code and the problem is its creating a 1252 codepage file, i want to force it to create a UTF-8 file
Can anyone help me with this code, as i say it currently works... but i need ...
13
votes
4answers
4k views
using pyodbc on linux to insert unicode or utf-8 chars in a nvarchar mssql field
I am using Ubuntu 9.04
I have installed the following package versions:
unixodbc and unixodbc-dev: 2.2.11-16build3
tdsodbc: 0.82-4
libsybdb5: 0.82-4
freetds-common and freetds-dev: 0.82-4
I have ...
13
votes
9answers
22k views
Java - Convert String to valid URI object
I am trying to get a java.net.URI object from a String. The string has some characters which will need to be replaced by their percentage escape sequences. But when I use URLEncoder to encode the ...
13
votes
4answers
3k views
How do I read UTF-8 with diamond operator (<>)?
I want to read UTF-8 input in Perl, no matter if it comes from the standard input or from a file, using the diamond operator: while(<>){...}.
So my script should be callable in these two ways, ...
13
votes
3answers
9k views
PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string
What I want to do is to remove all accents and umlauts from a string, turning "lärm" into "larm" or "andré" into "andre". What I tried to do was to utf8_decode the string and then use strtr on it, but ...
13
votes
7answers
13k views
A script to change all tables and fields to the utf-8-bin collation in MYSQL
Is there a SQL or PHP script that I can run that will change the default collation in all tables and fields in a database?
I can write one myself, but I think that this should be something that ...