Comment on What developers should know about Unicode and character sets in 2013Comments−hcarvalhoalves12yWhile there are a ton of encodings you could use, for the web use UTF-8. You want to use UTF-8 for your entire stack. So how do we get that?You should use your language's internal unicode representation, and decode from/encode to UTF-8 on I/O.
Comments
You should use your language's internal unicode representation, and decode from/encode to UTF-8 on I/O.