23
votes
7answers
7k 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 …
19
votes
6answers
945 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 …
11
votes
5answers
247 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 …
11
votes
7answers
3k 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 …
10
votes
5answers
1k 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 …
9
votes
6answers
219 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 …
9
votes
6answers
339 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 …
9
votes
4answers
1k 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 …
9
votes
3answers
301 views
Should I still use html entities? Why?
Is html entities still useful or should I simply create UTF-8 encoded html documents? Please explain why.
9
votes
5answers
4k 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 …
9
votes
7answers
3k 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 …
8
votes
1answer
134 views
What are the limitations of primitive character types in D?
I am currently exploring the specification of the Digital Mars D language, and am having a little trouble understanding the complete nature of the primitive character types. The book Learn to Tango …
8
votes
2answers
1k views
Is this the correct way to send email with PHP?
I'm a bit worried if this function sends emails that can be recognized correctly on the majority of email and webmail clients the way it should, specifically I'm most concerned about this doubts:
…
7
votes
5answers
263 views
enabling UTF-8 encoding for clojure source files.
Hi all,
I'm working on a project which involves maven, java and clojure. The problem I'm facing is this, I have some UTF-8 chars in my clojure source files because of which my source code is not …
7
votes
10answers
676 views
Which programming languages were designed with Unicode support from the beginning?
Which widely used programming languages were designed ground-up with Unicode support?
A lot of programming languages have added Unicode support as an afterthought in later versions, but which widely …
