problem with german characters

I'm using a simple <fmt:message> tag. The exact same tag works on one screen and not the other... and when I mean not working.. it is still pulling from the properties file, it just isn't using the correct characers.. Pl盲neinstead ofPl鋘e what could cause this to
[299 byte] By [gmachamera] at [2007-10-3 0:30:34]
# 1
hmmm actually it sometimes works and sometimes doesn't work on the same screen... sometimes the characters will be correct.. then if I refresh they are wrong....
gmachamera at 2007-7-14 17:23:40 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Does your properties file have those "funny" characters in it?Try running it through the "native2ascii" application (comes with JDK) http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html#intl
evnafetsa at 2007-7-14 17:23:40 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
No the properties file is "funny" character free. I'll check into the native2ascii and see if that is the problem.... but I wouldn't think it would be since it works sometimes.
gmachamera at 2007-7-14 17:23:40 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

Just re-read the first post.

You say it works in one place and not anther?

Check for content-type/character-encoding tags.

<%@ page pageEncoding=

<%@ page contentType= ....

http://java.sun.com/products/jsp/syntax/1.2/syntaxref1210.html#15653

Most probably the page that works will have them. (worth a look anyway)

evnafetsa at 2007-7-14 17:23:40 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 5
Neither pages have either set... so the default is being used...
gmachamera at 2007-7-14 17:23:40 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...