’ showing in page in place of this '

what is the problem? how to solve

This is already defined in

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

Update:

Browser is already set on Unicode

alt text

And content type is already set too

alt text

link|improve this question

64% accept rate
Where does the data come from? – Pekka Mar 19 '10 at 13:16
1  
Where are you getting this text from? Are you reading this xml from a file? if so what is the encoding of the file? – David Waters Mar 19 '10 at 13:16
What server side technology are you using to output this file? It is clear the the browser is being told to interperate this as utf-8 , now what you need to do is ensure you are emitting this as utf-8. – David Waters Mar 19 '10 at 13:27
@David Waters - technology is showing in last screenshot added in my question . Asp.net – Jitendra Vyas Mar 19 '10 at 13:41
feedback

4 Answers

up vote 2 down vote accepted

Ensure the browser is using UTF-8 encoding instead of ISO-8859-1/Windows-1252.

Or use &rsquo;.

link|improve this answer
"Or use &rsquo;" . problem is solved. – Jitendra Vyas Mar 19 '10 at 13:48
3  
No, it is not solved. There's still an inconsistency in character encoding in your application. You will re-encounter the same problem in the future for other non-CP1252 characters. And there's quite a lot of them ... – BalusC Mar 19 '10 at 13:51
@BalusC -Thanks for this info. – Jitendra Vyas Mar 19 '10 at 13:57
@jitendra This is a hacky workaround and doesn't solve the problem. I recommend you work through the steps provided in @BalusC's very good answer. – Pekka Mar 19 '10 at 13:58
1  
Markdown just works in comments the same way. Use ` to start and end code. – BalusC Mar 19 '10 at 14:10
show 4 more comments
feedback

what is the problem?

It's an which has been encoded as CP-1252 instead of UTF-8.

how to solve?

Use UTF-8 instead of CP-1252 to read/write/store/display the characters.

This is already defined in

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

This only instructs the client which encoding to use to display the characters. This doesn't instruct your own program which encoding to use to read/write/store/display the characters. The exact answer depends on the server side platform / database / programming language used.

Update:

Browser is already set on Unicode And content type is already set too

Once again, this information is irrelevant. As said, this only instructs the client which encoding to use to display the characters. But the actual problem is that you're already sending ’ to the client instead of . The client is correctly displaying ’ as ’ using UTF-8 encoding. If the client was instructed to use for example ISO-8859-1, you would likely have seen ââ¬â¢ instead.

Here are some more links to learn more about the problem:

ASP.NET MVC environments are already by default UTF-8. But if you're actually using it, then there's something really messed up.

Update 2: as per the comments, the data is coming from a database. You need to verify with an independent DB admin tool how the data look like. If the is there, then you need to instruct the database connector to use UTF-8 as character encoding. If it already contains ’, then likely the database itself needs to be instructed to store the data as UTF-8. To achieve this, usually creating/altering the database and table as UTF-8 is sufficient. Here's a MySQL targeted example (copied from this article):

CREATE DATABASE db_name CHARACTER SET utf8;
CREATE TABLE tbl_name (...) CHARACTER SET utf8;

But if it is already UTF-8, then you need to take a step back. Who/what did store the data there? The problem is in there. Maybe it was stored from request parameters? If so, then you need to configure the request encoding.

link|improve this answer
+1 for ur very good effort – Jitendra Vyas Mar 19 '10 at 13:49
It's however sad to see that you after all didn't fix the problem, but just workaround the problem. This is a pretty major problem which should not be workarounded. Don't you consider yourself as a good developer? – BalusC Mar 19 '10 at 13:52
you mean i can use "'" as "'" while writing content no need to replace this ' with &rsquo;. – Jitendra Vyas Mar 19 '10 at 14:00
feedback

If your content type is already UTF8 (are you sure this is the case? Check Firefox's "content type" menu and what is checked there) , then it is likely the data is already arriving in the wrong encoding. If you are getting the data from a database, make sure the database connection uses UTF-8.

If this is data from a file, make sure the file is encoded correctly as UTF-8. You can usually set this in the "Save as..." Dialog of the editor of your choice.

If the data is already broken when you view it in the source file, chances are that it used to be a UTF-8 file but was saved in the wrong encoding somewhere along the way.

link|improve this answer
firefox setting is this see image shup.com/Shup/299367/110219131950-My-Desktop.png – Jitendra Vyas Mar 19 '10 at 13:23
@jitendra good, so that is excluded. What is important now is where the data comes from. – Pekka Mar 19 '10 at 13:25
data coming from WYSIWYG editor – Jitendra Vyas Mar 19 '10 at 13:27
@jitendra Yes but how is it stored?!? – Pekka Mar 19 '10 at 13:28
@Pekka - in database. – Jitendra Vyas Mar 19 '10 at 13:39
show 1 more comment
feedback

You have a mismatch in your charecter encoding, you string is encoded in one encoding UTF-8 and what ever is interprating this page is using another say ASCII.

Alway specify your encoding in your http headers and make sure this matchs you frameworks definition of encoding sample http header

Content-Type    text/html; charset=utf-8

Setting Encoding in asp.net

<configuration>
  <system.web>
    <globalization
      fileEncoding="utf-8"
      requestEncoding="utf-8"
      responseEncoding="utf-8"
      culture="en-US"
      uiCulture="de-DE"
    />
  </system.web>
</configuration>

Setting encoding in jsp

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.