This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Special character languages for webserver

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,

Parents
  • 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?

Reply
  • 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?

Children