Character Encoding for latin characters

Hello,
Can someone please pointout how can I change Character Encoding in Framework7 to display latin catacters?

Thank you in advance

Help, anyone? :neutral_face:

It has utf 8 encoding and must support Latin characters

1 Like

Thank you for the answer. The issue is when retrieving/storing information into mysql database. Latin caracters got converted into unreadable caracters.

Solved this issue by placing the following code just before any mysql request:
mysql_query(“set names ‘utf8’”);

Best regards and thank you once more for your time.

UTF-8 supports any unicode character, which pragmatically means any natural language (Coptic, Sinhala, Phonecian, Cherokee etc), as well as many non-spoken languages (Music notation, mathematical symbols, APL). The few exceptions which are not supported well (like Klingon) usually have a roman-alphabet equivalent and/or have an unofficial private unicode code page. If you’re concerned about a particular language, you’re better off asking about that exact and particular one.

see http://www.unicode.org/charts/index.html which shows all the major code blocks (character sets) supported by unicode. Typically a character set corresponds to a language family, but the correspondence is not exactly one-to-one.