Diacritics on LCD display

Hello, i'm using LiquidCrystal library and i want to display on my LCD panel text with diacritics, like ? š ó ?. I tried just write it to lcd.print("? š ó ?"); but it dont works, anyone have idea how to enable diacritics?
Thanks

Idk if lcds have those characters, you may havr to use the custom character feature and make your own

There was such a discussion a while back. If you want the characters with accents(?! right term) you can either go get an HD44780 display with European characters in the extended ASCII region, or use custom characters (if you only use them occasionally).

What about a graphics display?
u8glib (Google Code Archive - Long-term storage for Google Code Project Hosting.) supports all characters from gnu unifont: http://unifoundry.com/unifont.html

By default code page 0 is part of the u8glib distribution:

If you drop me PM, i can also easily add code page 1 and 2 (or any other page):

Oliver