Questions tagged [iso-8859-2]

ISO codepage generally intended for “Eastern European” languages that are written in the Latin script (Bosnian, Croatian, Czech, German, Hungarian, Polish, Serbian Latin, Slovak, Slovene, Upper Sorbian, and Lower Sorbian)

ISO/IEC 8859-2:1999 Information technology — 8-bit single-byte coded graphic character sets — Part 2: Latin alphabet No. 2, is part of the ISO/IEC 8859 series of ASCII-based standard character encodings, first edition published in 1987. It is informally referred to as Latin-2. It is generally intended for “Eastern European” languages that are written in the Latin script.

Full code page layout is available at Wikipedia

34 questions
1
vote
0 answers

Reading polish characters with textscan in Matlab

I need to read text files with polish characters in it. For example the ł. I tried to set the right encoding for polish language: fileID=fopen('Polish.lab','r','n','ISO-8859-2'); text=textscan(fileID,'%s'); celldisp(text) but I still get wrong…
jonen
  • 43
  • 4
1
vote
1 answer

SAXException iso-8859-2

I have an XML file which starts with . I read it the following way: SAXParserFactory.newInstance().newSAXParser().parse(is, handler); where is is an InputStream and handler is some arbitrary handler. Then…
szali
  • 498
  • 3
  • 11
0
votes
1 answer

Android convert ISO-8859-2 to UTF-8

I'm downloading HTML source code of remote page into String variable. Unfortunetely the page is encoded via iso-8859-2 and contains characters from polish alphabet. How can I convert this string to utf-8, so I can display it's parts in…
Sebastian Nowak
  • 5,607
  • 8
  • 67
  • 107
0
votes
1 answer

HTML ISO-8859-2 form encoding

I have to send some values via post ISO-8859-2 encoded. When the receiver got and displayed the message it was something like Ä…,ć,Ä™,Ĺ‚,Ĺ„,Ăł,Ĺ›,Ĺş,Ĺź,Ä„,Ć,Ę,Ĺ,Ĺƒ,Ă“,Ĺš,Ĺš,Ĺť (stack overflow cannot display all of them by paste). The example of…
0
votes
0 answers

How to convert diacritical words to text in browser using C# .NET (UTF-8/Unicode)?

The Web Page I work on, for example, takes the county from where a certain person sends feedback (because the site is an ad site, like ebay or aliexpress) and appears in an NPS (Net Promoter Score (NPS) is a customer loyalty and satisfaction…
VladZ
  • 11
  • 3
0
votes
1 answer

BOM (byte order mark) of ISO Encoding

is there a BOM of ISO-8859-1 and ISO-8859-2 encoding?
linuxman
  • 147
  • 1
  • 1
  • 8
0
votes
2 answers

Generate UTF-8 character list

I have a UTF-8 file which I convert to ISO-8859-1 before sending the file to a consuming system that does not understand the UTF-8. Our current issue is that when we run the iconv process on the UTF-8 file, some characters are getting converted to…
sashmi
  • 97
  • 1
  • 2
  • 14
0
votes
0 answers

Character encoding mystery ( working flawlessly for me, but unfortunately not for all )

I have a content manager website, where character encoding working wonderfully for almost everyone, but not for a few "lucky" users, which drives me crazy. I have a (search) keyword database table (log) which sometimes shows very strange keywords…
Catso
  • 113
  • 12
0
votes
2 answers

How to pass correctly latin chars like "ś" in jmeter login post request

When I wish to login as "pieraś", the page detects login "pieraĹ" I tried selecting "URL ENCODE", changing jmeter.property csvdataset.file.encoding_list to "ISO 8859-2" only as well ass UTF-8 only. JMETER request picture How to make it work right?
0
votes
0 answers

Use of ISO-8859-2 encoding in PHPMailer

I am trying to send some Latin Extended (ISO-8859-2) characters form a LandingPage registration Form, but from $mail->Body all the "ăîâşţ" ends in the E-mail Message as "ăîâşţ". Do I have to declare the Encoding on PHPMailer somewhere? The…
sealview
  • 99
  • 1
  • 8
0
votes
1 answer

Get raw binary data from XML attribute's value parsed with SAX in Java

I am parsing an XML document which contains text strings, obtained from various input text files with no information about their encoding, which are stored as attribute's values. The XML document itself is generated with specific encoding, but the…
WakamaHeja
  • 31
  • 5
0
votes
0 answers

How can I use uconv to convert utf-8 with latin1 and latin2 special characters to latin1 using the transliterate feature?

I have to convert an EDIFACT file with unicode (UTF-8) characters (Latin2/iso-8859-2 and latin1/iso-8859-1 special characters) to latin1. uconv seems to be the right tool for that but there is no predefined mapping unicode-latin2. Is it possible to…
0
votes
2 answers

Node.js convert string from ISO-8859-2 to UTF-8

When I am downloading page content by Node.js Request and the content is encoded by ISO-8859-2, it is impossible to convert it to UTF-8. I am using node-iconv for it. Code: request('https://www.jakpsatweb.cz', function(err, resp, body){ const…
MakoBuk
  • 464
  • 2
  • 8
  • 18
0
votes
1 answer

DB2 Code conversion from Unicode to ISO8859-2 and back

When saving some string from XML (UTF8 encoded) containing Latvian capital (Rīga). Riga comes this I with macron (Unicode) to DB2. Database code page is not Unicode but unfortunately ISO8859-2. Conversion occurs and this special I gets substituted…
Levijatanu
  • 371
  • 2
  • 17
0
votes
0 answers

Printing croatian text in a PDF using iText for Java

Well, I have some records in my database and one of those have a character Đ wich is croatian. The record in the database is correct and when I display it in a grid in JSF/Primefaces the character is diplayed perfectly. But, when I print it in a PDF…
Alexev
  • 157
  • 2
  • 19