UTF-8 (Unicode Transformation Format, 8 bits) is a character encoding that describes each Unicode code point using a byte sequence of one to four bytes. It is backwards-compatible with ASCII while still supporting representation of all Unicode code points.
99
votes
9answers
171k 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 ...
257
votes
8answers
54k 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 ...
137
votes
8answers
67k 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 ...
41
votes
4answers
18k 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 ...
16
votes
3answers
22k views
How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?
Is there a function in PHP that can decode Unicode escape sequences like "\u00ed" to "í" and all other similar occurrences?
I found similar question here but is doesn't seem to work.
30
votes
4answers
56k views
SET NAMES utf8 in MySQL?
I often see something similar to this below in PHP scripts using MySQL
query("SET NAMES utf8");
I have never had to do this for any project yet so I have a couple basic questions about it.
...
33
votes
10answers
25k 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 ...
27
votes
5answers
16k views
Byte order mark screws up file reading in Java
I'm trying to read CSV files using Java. Some of the files may have a byte order mark in the beginning, but not all. When present, the byte order gets read along with the rest of the first line, thus ...
9
votes
6answers
11k views
UTF-8 BOM signature in PHP files
I was writing some commented PHP classes and I stumbled upon a problem. My name (for the @author tag) ends up with a ș (which is a UTF-8 character, ...and a strange name, I know).
Even though I save ...
17
votes
6answers
19k views
How to make MySQL handle UTF-8 properly
One of the responses to a question I asked yesterday suggested that I should make sure my database can handle UTF-8 characters correctly. How I can do this with MySQL?
26
votes
1answer
7k views
git, msysgit, accents, utf-8, the definitive answers
I've read in some places that there are problems with git (or just msysgit?) and character encoding - I believe it's only a problem in file names.
What I'd like is some 'definitive' (or at least ...
24
votes
9answers
21k views
I need help fixing Broken UTF8 encoding
I am in the process of fixing some bad UTF8 encoding. I am currently using PHP 5 and MySQL
In my database I have a few instances of bad encodings that print like: î
The database collation is ...
17
votes
3answers
17k views
Changing default encoding of python?
I have many "can't encode" and "can't decode" problems with python when I run my applications from console. But in Eclipse Pydev IDE, default character encoding is set to utf-8 and I'm fine.
I ...
16
votes
3answers
14k 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 ...
0
votes
4answers
2k views
PHP messing with HTML Charset Encoding
I have this very strange problem. I have a site that contains some German letters and when it's only html without php the symbols are property displayed with encoding when i change it to UTF-8 they ...
17
votes
13answers
15k views
How do I replace accented Latin characters in Ruby?
I have an ActiveRecord model, Foo, which has a name field. I'd like users to be able to search by name, but I'd like the search to ignore case and any accents. Thus, I'm also storing a ...
27
votes
14answers
16k 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 ...
69
votes
20answers
100k views
Excel to CSV with UTF8 encoding
I have an Excel file that has some Spanish characters (tildes, etc.) that I need to convert to a CSV file to use as an import file. However, when I do Save As CSV it mangles the "special" Spanish ...
7
votes
3answers
13k views
Classic ASP - How to convert a UTF-8 string to UCS-2?
I have a problem where I am storing a UTF-8 string in SQL Server as UCS-2. When I pull it out to display on a page with content-type set to UTF-8 it works fine. But I have a third party Javascript ...
25
votes
9answers
24k views
How do I remove  from the beginning of a file?
I have a CSS file that looks fine when I open it using gedit, but when it's read by PHP (to merge all the CSS files into one), this CSS has the following chars prepended to it: 
PHP removes all ...
12
votes
5answers
7k views
How do I use filesystem functions in PHP, using UTF-8 strings?
I can't use mkdir to create folders with UTF-8 characters.
<?php
$dir_name = "Depósito";
mkdir($dir_name );
?>
But, when I browse this folder in Windows Explorer, the folder name looks like ...
8
votes
3answers
23k views
Detect file encoding in PHP
I have a script which combines a number of files into one, and it breaks when one of the files has UTF8 encoding. I figure that I should be using the utf8_decode() function when reading the files, but ...
82
votes
10answers
51k 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 ...
39
votes
9answers
15k 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 ...
35
votes
2answers
74k views
HTML encoding issues - “” character showing up instead of “ ”
I've got a legacy app just starting to misbehave, for whatever reason I'm not sure. It generates a bunch of HTML that gets turned into PDF reports by ActivePDF.
The process works like this:
Pull ...
18
votes
10answers
20k views
How to display UTF-8 characters in phpMyAdmin?
I have my database properly set to UTF-8 and am dealing with a database containing Japanese characters. If I do SELECT *... from the mysql command line, I properly see the Japanese characters. When ...
15
votes
9answers
22k 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 ...
7
votes
1answer
3k views
Converting escaped UTF8 characters back to their original form in iOS/Objective C
In my iOS project I'm trying to read strings from an array that's coming from a plist and print those strings on the screen - sounds simple, but unfortunately I'm having a problem with this:
The ...
3
votes
4answers
6k views
UTF8 problem with MySQL 5
I'm migrating my WordPress blog and phpBB Forum into a new hosting server. I am using phpMyAdmin to import the SQL script from the database in the previous site.
When I open the .sql script with ...
6
votes
5answers
3k views
php: using DomDocument whenever I try to write UTF-8 it writes the hexadecimal notation of it
When I try to write UTF-8 Strings into an XML file using DomDocument it actually writes the hexadecimal notation of the string instead of the string itself.
for example:
...
4
votes
4answers
8k views
Binary to text in Java
I have a String with binary data in it (1110100) I want to get the text out so I can print it (1110100 would print "t"). I tried this, it is similar to what I used to transform my text to binary but ...
58
votes
7answers
24k views
UTF-8 vs Unicode
I have heard conflicting opinions from people - according to wikipedia, see here
They are the same thing, aren't they? Can someone clarify?
36
votes
14answers
36k views
How can I output a UTF-8 CSV in PHP that Excel will read properly?
I've got this very simple thing that just outputs some stuff in CSV format, but it's got to be UTF-8. I open this file in TextEdit or TextMate or Dreamweaver and it displays UTF-8 characters properly, ...
19
votes
7answers
3k 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
18k views
Storing and displaying unicode string (हिन्दी) using PHP and MySQL
I have to store hindi text in a MySQL database, fetch it using a PHP script and display it on a webpage. I did the following:
I created a database and set its encoding to UTF-8 and also the collation ...
9
votes
9answers
13k views
How to conduct an Accent Sensitive search in MySql
I have a MySQL table with utf8 general ci collation. In the table, I can see two entries:
abad
abád
I am using a query that looks like this:
SELECT * FROM `words` WHERE `word` = 'abád'
The query ...
5
votes
3answers
2k views
Why do my Perl tests fail with `use encoding 'utf8'`?
I'm puzzled with this test script:
#!perl
use strict;
use warnings;
use encoding 'utf8';
use Test::More 'no_plan';
ok('áá' =~ m/á/, 'ok direct match');
my $re = qr{á};
ok('áá' =~ m/$re/, 'ok ...
0
votes
6answers
21k views
How to write file in UTF-8 format?
I have bunch of files that are not in UTF-8 encoding and I'm converting a site to UTF-8 encoding.
I'm using simple script for files that I want to save in utf-8, but the files are saved in old ...
2
votes
4answers
4k views
How to display utf-8 in windows console
I'm using Python 2.6 on Windows 7
I borrowed some code from here:
http://stackoverflow.com/questions/5419/python-unicode-and-the-windows-console
My goal is to be able to display uft-8 strings in ...
39
votes
7answers
24k views
How to use UTF-8 in resource properties with ResourceBundle
I need to use UTF-8 in my resource properties using Java's ResourceBundle. When I enter the text directly into the properties file, it displays as mojibake.
My app runs on Google App Engine.
Can ...
38
votes
5answers
20k 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 ...
19
votes
5answers
90k views
Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byte
I am trying to convert a string encoded in java in UTF-8 to ISO-8859-1. Say for example, in the string 'âabcd' 'â' is represented in ISO-8859-1 as E2. In UTF-8 it is represented as two bytes. C3 A2 I ...
8
votes
4answers
6k views
How to detect UTF-8 in plain C?
I am looking for a code snippet in plain old C that detects that the given string is in UTF-8 encoding. I know the solution with regex, but for various reasons it would be better to avoid using ...
11
votes
7answers
11k views
How to sort an array of UTF-8 strings?
I currentyl have no clue on how to sort an array which contains UTF-8 encoded strings in PHP. The array comes from a LDAP server so sorting via a database (would be no problem) is no solution.
The ...
10
votes
4answers
8k views
PHP: Convert unicode codepoint to UTF-8
I have my data in this format: U+597D or like this U+6211. I want to convert them to UTF-8 (original characters are 好 and 我). How can I do it?
7
votes
4answers
4k views
How to avoid echoing character 65279 in php? (This question also relates to Javascript xmlhttp.responseText (ajax))
I have encountered a similar problem described here (and in other places) -
where as on an ajax callback I get a xmlhttp.responseText that seems ok (when I alert it - it shows the right text) - but ...
89
votes
12answers
44k 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?
22
votes
8answers
7k 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 ...
30
votes
6answers
19k 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'
...
43
votes
5answers
62k 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 ...
