Hi Everyone, I am currently using Keil MDK ARM along with a STM32F4 micro. I am using nearly all library functions : TCP/IP, FFS, USB, RTOS...
I host a webserver for which I use language files located on the SDCard. Everything works fine, but I would like to implement Greek language and this does not work straigth forward (characters are not displayed correctly).
Is there a recommanded way for reading greek characters from a text file and displaying them on website ?
Thanks for your inputs, Regards,
First off - are the greek text in UTF8 or some other multi-byte character encoding? That will affect how you read in and processes your texts.
And next - will the produced HTTP data specify a correct character set so the web browser knows how to handle the received text?
Hi,
I have updated my charset : <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
Now it works better :)
Thanks, Regards,