Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does the Java string:

"God's wrath"

appear in HTML as

God's wrath

How to avoid this?

share|improve this question
2  
why would you want to avoid it? – Grumpy Dec 21 '10 at 19:16
2  
Does it appear that way in the source of your HTML or in the page view? If it's the source then, yes, why would you want to avoid it? – jaydel Dec 21 '10 at 19:17

4 Answers

This character is escaped to prevent XSS if the resulting string is used in HTML attribute quoted with '. See OWASP XSS Prevention Cheat Sheet.

I don't think it's a good idea to disable such security precautions, since they don't harm the normal behaviour.

share|improve this answer

Just like the '<', '>', and other characters, the quote is replaced by that code to avoid nasty surprises when the browser is rendering the page. Take a look at this list by W3Schools for a complete list of codes and their respective symbol.

share|improve this answer

If you're using JSTL the c:out tag has an escapeXml attribute, you can set it to false to avoid encoding characters.

share|improve this answer

Special characters appear as ampersand escaped numbers because they mean something in HTML. In this case the ' is used to start a string literal. if you want it to actually show the ' then you have to replace it with the escaping. That's the why.

I don't know why you'd want to avoid it though.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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