1
vote
2answers
54 views
Switch website encoding from ISO-8859-1 to UTF-8
I am trying to convert my existing PHP webpage to use UTF-8 encoding.
To do so, I have done the following things:
specified UTF-8 as the charset in the meta content tag at the s …
0
votes
2answers
39 views
Netbeans unicode problems
I am switching to Netbeans for php programming (I currently use gedit).
Some characters from the original source code ( à, á, é, è, etc.) are not shown in Netbeans, regardless of …
0
votes
3answers
55 views
Sending Email in PHP with special characters
I have a small web form which will cause a PHP script to send a receipt upon clicking the submit button, by an HTML mail. This mail contains special characters, namely 'å', 'ä' and …
2
votes
2answers
137 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 aj …
0
votes
4answers
175 views
utf-8 to iso-8859-1 encoding problem
I'm trying preview the latest post from an rss feed on another website. The feed is UTF-8 encoded, whilst the website is ISO-8859-1 encoded. When displaying the title, I'm using;
…
0
votes
1answer
472 views
HTML encoding issues - “” character showing up instead of “ ”
Hey everyone,
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.
Th …
0
votes
4answers
200 views
How to get json_encode() to work with ISO-8859-1 (åäö)
json_encode() wont work for me when I'm using åäö. Why? And how can I get it to work?
The php:
echo json_encode($arr);
The javascript:
var theResponse = JSON.parse(xmlHttp.res …
2
votes
3answers
679 views
Encoding UTF8 string to ISO-8859-1 String (VB.NET)
Hi
I need to convert UTF8 string to ISO-8859-1 string using VB.NET.
Any example?
Thanks in advance.
1
vote
6answers
819 views
ISO-8859-1 to UTF8 in ASP.NET 2
We've got a page which posts data to our ASP.NET app in ISO-8859-1
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<title> …
0
votes
1answer
105 views
Is iso-8859-1 supported in Silverlight?
Hi, this is a simple question: does Silverlight (3.0?) support this kind of encoding?
Encoding c = Encoding.GetEncoding("iso-8859-1");
Calling this function in Silverlight 3. …
2
votes
1answer
104 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 …
2
votes
2answers
876 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 …
2
votes
5answers
3k 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 s …
1
vote
3answers
787 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 …
0
votes
4answers
4k views
Convert utf8-characters to iso-88591 and back in PHP
Hi all.
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 chang …
