Author Topic: Esperanto words in my website  (Read 4859 times)

0 Members and 1 Guest are viewing this topic.

tmazanec1

  • Newbie
  • *
  • Posts: 22
    • View Profile
Esperanto words in my website
« on: June 06, 2013, 05:30:04 pm »
How do I type Esperanto words like Koŝmarego on my webpages? When I try I get weird puctuation instead of ŝ, so I just use Koshmarego, but I am writing several stories and hope to post them on Planet Mazanec this month, and would like to use the correct word form.

Xepher

  • Techsmith
  • Administrator
  • *****
  • Posts: 4,334
  • Illegitimis non carborundum!
    • View Profile
    • Xepher.net
Re: Esperanto words in my website
« Reply #1 on: June 07, 2013, 05:05:50 am »
Using non-english character set encodings for web pages can be slightly complicated. If it's just plain HTML, then two main things. First, you need to use a UTF-8 capable text editor when modifying the document, and make sure to upload the file in binary mode if using FTP. Secondly, you need to set the character set to UTF-8 in the HTML code. This can be done with
Code: [Select]
<meta charset='utf-8'> in most cases. If you're using something more complicated (like a PHP based CMS or some such) then you'll need to find the documentation for that CMS to see what needs to be modified to support UTF-8. See this page for an example/test I just put up. http://xepher.xepher.net/utf8.html That appears to show the proper caret (hat) above the s. If it looks right to you as well, then you should be able to simply use the same meta tag in your own documents.