I get strings over an ODBC connection from a SQL Server 2005 which contain characters beginning with 'L\' followed by the character code. These characters are not displayable in Ruby/Rails but with other Applications which are using the same ODBC connection. I am using the ruby-odbc gem with utf-8. Umlaut characters are displayed correctly, but not these starting with 'L\'. Examples are 'L\264' for acent grave, 'L\262' is '³' and, 'L\263 is '²'.
My questions:
- To which character set do they belong?
- How can they be displayed in
Ruby/Rails?