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

I am using xhtml and jsf combination. If I enter umlet character in text box it chage to other code. Suppose i give ö it change to ö. Can please any body help me? Is need to include any tag for umlet in jsf?

share|improve this question

1 Answer

Facelets uses UTF-8 by default to write the characters to the response, so this issue should not be caused by Facelets. Apparently the file itself is saved with the wrong encoding by your file editor. To be precise, in CP-1252 instead of UTF-8. Explore the editor settings to change it to UTF-8. In Eclipse for example, you can find it in Window > Preferences > General > Workspace > Text File Encoding.

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.