Page ecoding

Hi,

I have a page (htm) which contains some characters like ?or ? When I deploy the web app in my localhost (tomcat) I see them well but when I deploy it in another tomcat server (one web host in US, I think) the characters appear with a ?

what can I do to correct this?

thanks in advance,

Manuel Leiria

[334 byte] By [manuel.leiriaa] at [2007-11-27 4:43:43]
# 1
For some, you can use HTML entities, like á for á
Hippolytea at 2007-7-12 9:55:31 > top of Java-index,Java Essentials,Java Programming...
# 2
> For some, you can use HTML entities, like> á for ?br>yes, I know that but there must be some way other than hardcoding all the special characters!thanks,
manuel.leiriaa at 2007-7-12 9:55:31 > top of Java-index,Java Essentials,Java Programming...
# 3
You could declare the pages to have the same encoding they were actually created with. Don't rely on the default values of your application server or your text editor or IDE or whatever.
DrClapa at 2007-7-12 9:55:31 > top of Java-index,Java Essentials,Java Programming...
# 4
thanks.I was missing the meta tag<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />It solved the problem
manuel.leiriaa at 2007-7-12 9:55:31 > top of Java-index,Java Essentials,Java Programming...