How to convert a string that is in UCS2 (2 bytes per character) into a UTF8 string in Ruby?
|
feedback
|
|
You should look into iconv, which is part of the Ruby standard library. It is designed for this task. Specifically,
should handle the conversion. | ||||
|
feedback
|
|
Because chars in most cases string in UCS2 encoding can be represented as UTF-16 string (in UTF-16 char with codes bigger than 0x10000 is rarely used) I think use of Iconv is better way to convert strings. Sample code:
| |||
|
feedback
|
|
With Ruby 1.9:
If the string encoding is not known, you may need to set it first:
| |||
|
feedback
|