I have a french character that is encoded as follows:
"Jos\xE9e"
I need to convert it to regular character because it produces this error on my server:
invalid byte sequence in UTF-8
What can I do to fix this error?
Rails 3 Ruby 1.9.2
|
I have a french character that is encoded as follows: "Jos\xE9e" I need to convert it to regular character because it produces this error on my server: invalid byte sequence in UTF-8 What can I do to fix this error? Rails 3 Ruby 1.9.2 |
||||
|
|
|
That looks like "Josée" encoded in ISO 8859-1 (AKA Latin-1). You can use Iconv to convert it to UTF-8:
|
|||
|
|
|
Use a editor support utf-8, and add coding line at the top of all source files:
If some input string is not utf-8, convert it to utf-8 first before processing:
All above only work under ruby 1.9. For more information, you can check the book: Ruby Best Practices. |
|||
|
|
|
you should use utf8 in all your source code, how about save your file in utf-8 encoding |
|||
|
|