Getting a page displayed in Cyrillic

Discussion in 'HTML & Website Design' started by rhyswynne, Jul 26, 2007.

  1. #1
    Hi everybody.

    I'm in the process of creating translation pages for a number of websites, one of which is in Cyrillic (Russian).

    I am having problems displaying the text in FF and IE (it looks fine in Dreamweaver), instead it's being replaced with "??'s".

    I thought this could be a character set not being installed, but I checked ru.wikipedia.org and it displays okay.

    I think maybe the Document Type Definition is wrong maybe?

    Thanks for any help
     
    rhyswynne, Jul 26, 2007 IP
  2. pruad

    pruad Peon

    Messages:
    71
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #2
    pm me url, I can help maybe
     
    pruad, Jul 26, 2007 IP
  3. rhyswynne

    rhyswynne Active Member

    Messages:
    520
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    58
    #3
    Thanks to Pruad, he suggested this solution that works for me :)

    You need to define the character set using either

    <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
    Code (markup):
    or
    
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    Code (markup):
     
    rhyswynne, Jul 26, 2007 IP
  4. jkolarov

    jkolarov Peon

    Messages:
    109
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #4
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - this should work fine in all browsers. UTF8 is doing great with Cyrillic
     
    jkolarov, Jul 26, 2007 IP