Questions tagged [latin9]

An 8-bit single-byte character encoding defined in ISO/IEC 8859 Part 15. Similar to Latin 1 but includes the likes of €.

6 questions
2
votes
2 answers

Perl latin-9? Unicode - need to add support

I have an application that is being expanded to the UK and I will need to add support for Latin-9 Unicode. I have done some Googling but found nothing solid as to what is involved in the process. Any tips? Here is some code (Just the bits for…
Phill Pafford
  • 83,471
  • 91
  • 263
  • 383
2
votes
2 answers

Conversion from iso-8859-15 (Latin9) to UTF-8?

I need to convert some strings formated with Latin9 charset to UTF-8. I cannot use iconv as it is not included in my embedded system. Do you know if there is some available code for it?
fazineroso
  • 7,196
  • 7
  • 31
  • 42
1
vote
3 answers

Perl Encode - UK characters

This is a part 2 question from This Question. So I'm trying out the :encode functionality but having no luck at all. use Encode; use utf8; # Should print: iso-8859-15 print "Latin-9 Encoding: ".find_encoding("latin9")->name."\n"; my $encUK =…
Phill Pafford
  • 83,471
  • 91
  • 263
  • 383
1
vote
1 answer

Object mapping from JSON data thanks to RestKit 0.20.3

I'm trying to map object from a JSON data encoded in latin 9 (ISO/IEC 8859-15) (I can't unfortunately change it to UTF-8) My JSON data contains some accents, that's why I got an underlyingError form the - (id)parseResponseData:(NSError **)error…
Guillaume
  • 393
  • 2
  • 21
0
votes
2 answers

Calculate string size in UTF-8 when converted from Latin-9 (ISO/IEC 8859-15)

We have a jdbc program which moves data from one database to another. Source database is using Latin9 character set Destination database uses UTF-8 encoding and the size of a column is specified in bytes instead of characters We have converted ddl…
sandeepkunkunuru
  • 6,150
  • 5
  • 33
  • 37
0
votes
1 answer

IOS Encoding ISO-8859-9

I need to get contents of an XML file which is hosted on web, and parse it. I decided to use TouchXML for parsing process. However, I cannot get contents of the file since it is encoded with ISO-8859-9 XML File Url:…
SadullahCeran
  • 2,425
  • 4
  • 20
  • 34