Tagged Questions
The iso-8859-1 tag has no wiki summary.
13
votes
3answers
139 views
Peter Piper piped a Python program - and lost all his unicode characters
I have a Python script that loads a web page using urllib2.urlopen, does some various magic, and spits out the results using print. We then run the program on Windows like so:
python program.py > ...
13
votes
10answers
24k views
Setting the character encoding in form submit for Internet Explorer
I have a page that contains a form. This page is served with content type text/html;charset=utf-8. I need to submit this form to server using ISO-8859-1 character encoding. Is this possible with ...
10
votes
4answers
14k views
C# Convert string from UTF-8 to ISO-8859-1 (Latin1) H
I know this has been asked before!
I have googled on this topic and I have looked at every answer, but I still don't get it.
Basically I need to convert UTF-8 string to ISO-8859-1 and I do it using ...
8
votes
3answers
11k views
How to write out a text file in C# with a code page other than utf-8?
I want to write out a text file.
Instead of the default UTF-8, I want to write it encoded as ISO-8859-1 which is code page 28591. I have no idea how to do this...
I'm writing out my file with the ...
7
votes
5answers
51k views
Converting UTF-8 to ISO-8859-1 in Java - how to keep it as single byte
I am trying to convert a string encoded in java in UTF-8 to ISO-8859-1. Say for example, in the string 'âabcd' 'â' is represented in ISO-8859-1 as E2. In UTF-8 it is represented as two bytes. C3 A2 I ...
7
votes
5answers
29k views
How do I convert between ISO-8859-1 and UTF-8 in Java?
Does anyone know how to convert a string from ISO-8859-1 to UTF-8 and back in Java?
I'm getting a string from the web and saving it in the RMS (J2ME), but I want to preserve the special chars and get ...
7
votes
5answers
28k views
Convert utf8-characters to iso-88591 and back in PHP
Some of my script are using different encoding, and when I try to combine them, this has becom an issue.
But I can't change the encoding they use, instead I want to change the encodig of the result ...
5
votes
1answer
95 views
UrlEncode with specific Encoding in Windows Phone 7?
In "regular" .NET there is a UrlEncode method that takes an Encoding parameter.
Is there no such UrlEncode method in .NET for WP7?
I'm located in Sweden and I'm trying to retrieve data from a REST ...
4
votes
2answers
559 views
Difference between utf-8 and ISO-8859-1
Can anyone tell what is difference between utf-8 and ISO-8859-1
4
votes
2answers
122 views
What happens to a null byte when converting bytes to ISO 8859-1 encoding?
I'm not entirely sure if the question even makes sense. I'm converting a byte array taken from an ID3 tag and converting it to a string. Most text frames in an ID3 tag use ISO 8859-1 encoding but it ...
4
votes
2answers
426 views
problem with unicode decoding
This is funny.. I am trying to read geographic lookup data from openstreetmap. The code that performs the query looks like this
params = urllib.urlencode({'q': ",".join([e for e in full_address]), ...
4
votes
1answer
624 views
PHP: Problems converting “’” character from ISO-8859-1 to UTF-8
I'm having some issues with using PHP to convert ISO-8859-1 database content to UTF-8. I am running the following code to test:
// Connect to a latin1 charset database
// and retrieve "Georgia ...
4
votes
2answers
6k views
Java InputStream encoding/charset
Running the following (example) code
import java.io.*;
public class test {
public static void main(String[] args) throws Exception {
byte[] buf = {-27};
InputStream is = new ...
4
votes
4answers
354 views
___ encoding to UTF-8 - is there an end-all solution?
I've looked across the web, I've looked through SO, through PHP documentation and more.
It seems like a ridiculous problem not to have a standard solution to. If you get an unknown character set, and ...
4
votes
1answer
18k views
HTML encoding issues - “” character showing up instead of “ ”
I've got a legacy app just starting to misbehave, for whatever reason I'm not sure. It generates a bunch of HTML that gets turned into PDF reports by ActivePDF.
The process works like this:
Pull ...
4
votes
3answers
8k views
Converting UTF-8 to ISO-8859-1 in Java
I am reading an XML document (UTF-8) and ultimately displaying the content on a Web page using ISO-8859-1. As expected, there are a few characters are not displayed correctly, such as “, – and ’ (they ...
4
votes
3answers
5k views
iconv gives “Illegal Character” with smart quotes — how to get rid of them?
I have a MySQL table with 120,000 lines stored in UTF-8 format. There is one field, product name, that contains text with many accents. I need to fill a second field with this same name after ...
4
votes
5answers
7k views
Java App : Unable to read iso-8859-1 encoded file correctly
I have a file which is encoded as iso-8859-1, and contains characters such as ô .
I am reading this file with java code, something like:
File in = new File("myfile.csv");
InputStream fr = ...
3
votes
2answers
45 views
ISO-8859-1 characters treated as UTF-8 in XSLT attributes
The ¬ character (0xAC in ISO-8859-1) works for normal text if I ensure that ISO-8859-1 is always used as the encoding throughout. However, when using it in attributes it is escaped to: %C2%AC. I ...
3
votes
1answer
174 views
How to store and display both ISO-8859-1 and UTF8 characters using perl
I am quite new to this, and this might be very easy to most people, but I have been struggling with this for days.
I'm writing a web crawler using perl, and the web crawler will extract certain ...
3
votes
2answers
313 views
Convert ISO-8859-1 to UTF-8 using groovy
i need to convert a ISO-8859-1 file to utf-8 encoding, without loosing content intormations...
i have a file which looks like this:
<?xml version="1.0" encoding="ISO-8859-1" ?>
...
3
votes
4answers
1k views
Reading iso-8859-1 rss feed C# WP7
I'm trying to read a rss feed which uses the iso-8859-1 encoding.
I can get all elements fine, the problem is when I put it in a textblock it will not show all characters. I'm not sure what i'm doing ...
3
votes
1answer
353 views
encode latin chars using ISO-8859-1 in PHP
I want to encode to ISO-8859-1 a url that contains latin characters like à, using PHP.
The encoded string will be used to perform a request to a webservice. So if the request is:
...
3
votes
3answers
427 views
 enconding issue
I'm developing a website using PHP and these strange chars "" appears in my page, right on the top of it.
My code is this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
3
votes
5answers
2k views
jQuery AJAX call messes up character encoding
I have a servlet that outputs JSON. The output encoding for the servlet is ISO-8859-1. Pages in our webapp are also set to ISO-8859-1. I would use UTF-8, but this is outside my control; we have to use ...
3
votes
2answers
145 views
Normalizing (webdav) unicode paths
I'm working on a WebDAV implementation for PHP. In order to make it easier for Windows and other operating systems to work together, I need jump through some character encoding hoops.
Windows uses ...
3
votes
2answers
5k views
How do I transcode a javascript string to iso-8859-1?
I'm writing a chrome extension that works with a website that uses iso-8859-1. Just to give some context what my extension does is making posting in the site's forums quicker by adding a more ...
3
votes
3answers
1k views
Re-encode url from utf-8 encoded to iso-8859-1 encoded
I have file:// links with non-english characters which are UrlEncoded in UTF-8. For these links to work in a browser I have to re-encode them.
file://development/H%C3%A5ndplukket.doc
becomes
...
3
votes
2answers
2k views
Change Website Character encoding from iso-8859-1 to UTF-8
About 2 years ago I made the mistake of starting a large website using iso-8859-1. I now am having issues with some characters, especially when sending data to the server using ajax. Because of ...
3
votes
4answers
11k views
Another JQuery encoding problem, on IE
I'm coding an italian website where I need to validate some input data with an xhr call.
My code for the ajax request's like this (I'm using JQuery 1.3.2):
$.ajaxSetup({
type: "POST",
...
3
votes
4answers
1k views
What content encoding does a Perl CGI script use by default?
I'm modifying a mature CGI application written in Perl and the question of content encoding has come up. The browser reports that the content is iso-8859-1 encoded and the application is declaring ...
3
votes
4answers
2k views
Setting ISO-8859-1 encoding for a single Tapestry 4 page in application that is otherwise totally UTF-8
I have a Tapestry application that is serving its page as UTF-8. That is, server responses have header:
Content-type: text/html;charset=UTF-8
Now within this application there is a single page that ...
2
votes
2answers
45 views
Java XML encoding error
I've implemented the following code within my Java application
//create string from xml tree
StringWriter sw = new StringWriter();
StreamResult result = new StreamResult(sw);
...
2
votes
1answer
38 views
Jquery ignores encoding ISO-8859-1
I have a website which apperently removes the correct encoding (ISO-8859-1) from a string and sends it wrong.
I have this encoding specified in my HTML
<meta charset="ISO-8859-1">
I load my ...
2
votes
2answers
114 views
HTML - £ pound symbol from database displayed as ? even with charset=UTF-8
We have a bunch of database data that someone manually entered. They contain a lot of British Pound (£) symbols. The original user copy/pasted the pound sign from somewhere, not sure where (I'm not ...
2
votes
1answer
72 views
UTF-8 and ISO-8859-1: Why does it work for the most of the time and why sometimes not?
I have a osCommerce 2.2 MST which has some custom additions to it. osCommerce itself is in ISO-8859-1. The addition has a table in a MySQL database which is now in utf8_general_ci (the others are all ...
2
votes
1answer
170 views
php's mb_detect_encoding()
first of all i'd like to say i've read the other post regarding php's mb_detect_encoding at
Strange behaviour of mb_detect_order() in PHP. Which definitely reconfirm what i'd learn through trail and ...
2
votes
1answer
109 views
Python ISO-8859-1 encoding
I'm facing a huge encoding problem in Python when dealing with ISO-8859-1 / Latin-1 character set.
When using os.listdir to get the contents of a folder I'm getting the strings encoded in ISO-8859-1 ...
2
votes
4answers
101 views
Why prefer UTF-8 over ISO-8859?
Quoted from W3Fools, a website highly critical of W3Schools:
This is very bad. Sites like W3Schools should not be advocating the
use of ISO-8859-1. UTF-8 should be used in nearly all cases.
...
2
votes
0answers
58 views
Using NSXMLParser with ISO-8859-1 truncates words with accents
I have the same exact problem that's in this question: Problemas com Parse XML - Iphone, but it didn't get any good answers.
I'm trying to parse an XML file with an ISO-8859-1 encoding, but everytime ...
2
votes
1answer
242 views
Convert a UTF-8 without BOM xml file into ISO 8859-1
I have an xml file UTF-8 encoded without BOM. In an hex editor it gives : 3c 3f 78 6d
I buffer my xml file and add the BOM at the beginning:
char* BufferEncoder = (char*)malloc(3);
...
2
votes
2answers
723 views
Java encoding for Japanese characters
I have a file name with Japanese characters.
file name: S-最終条件.pdf
In Java,
file name: S-最終条件.pdf
// Support for Japanese file name
fileNameX = new ...
2
votes
2answers
178 views
How can I get non-english characters from ajax form to MySQL
I have a form that submits data using the jQuery form plugin. From there it goes through some server side handling and finally stored in a MySQL db.
Upon submitting these characters áâãäï they ...
2
votes
1answer
363 views
Ruby on Rails - Generated Files' Encoding
I have discovered that all the files RoR generates when creating a new application seem to be saved with Western(ISO-8859-1) encoding (I am developing locally on a Windows machine). As a result I am ...
2
votes
2answers
596 views
How do I decode mail header strings with their encoding type in them in PHP
I'm creating a small, web based, mail client in PHP and noticed that a number of email Subjects and Contents appear as follows:
=?ISO-8859-1?Q?Everything_for_=A35_-_Box_Sets,_Games_?= ...
2
votes
4answers
14k views
Encoding UTF8 string to ISO-8859-1 String (VB.NET)
I need to convert UTF8 string to ISO-8859-1 string using VB.NET.
Any example?
Thanks in advance.
2
votes
1answer
512 views
Which code set is /etc/passwd stored in? Can it be UTF-8? What limits are placed on user names?
On a modern Unix or Linux system, how can you tell which code set the /etc/passwd file stores user names in? Are user names allowed to contain accented characters (from the range 0x80..0xFF in, say, ...
2
votes
6answers
3k views
HTML entities and charset in IE
I am displaying html entity ✓ (a check mark: ✓) in an html document that uses iso-8859-1 for the character set.
In Firefox, it displays as a check mark. In IE, it displays as a ...
2
votes
1answer
9k views
Any way to convert a regular string in ActionScript 3 to a ByteArray of Latin-1 Character Codes?
I am having no problem converting a string to a byteArray of UTF-16 encoded characters, but the application I am trying to communicate with (written in Erlang) only understands Latin-1 encoding. Is ...
2
votes
4answers
22k views
Writing XML files using XmlTextWriter with ISO-8859-1 encoding (C#)
I'm having a problem writing Norwegian characters into an XML file using C#. I have a string variable containing some Norwegian text (with letters like æøå).
I'm writing the XML using an ...