Unicode on web not show

Results 1 to 6 of 6
  1. #1
    Valued Member TantraRex is offline
    MemberRank
    Oct 2012 Join Date
    110Posts

    Unicode on web not show

    how to show unicode utf-8 in website?

    example †ree Kingdoms

    but in website show ?ree Kingdom

    thank you for helps


  2. #2
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Unicode on web not show

    Make sure it is encoded in UTF-8 Without Bom. Use notepad++

  3. #3
    Valued Member TantraRex is offline
    MemberRank
    Oct 2012 Join Date
    110Posts

    Re: Unicode on web not show

    @jbeitz107 thanks for answered.. but i can't understand you mean about you word "Make sure it is encoded in UTF-8 Without Bom"

    can you explain what the mean that sir?

    thanks before

    sorry for bad english

  4. #4
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Unicode on web not show

    This will help you to understand encoding with Notepad++ but, use the settings I recommend.

  5. #5
    Valued Member TantraRex is offline
    MemberRank
    Oct 2012 Join Date
    110Posts

    Re: Unicode on web not show

    @jbeitz107 i already tried sir but ranking page still not show unicode ascii

  6. #6
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Unicode on web not show

    You can use

    In html (before </head>):
    Code:
    <meta http-equiv="Content-Type" content="text/html; charset={-code-}" />
    or

    Code:
    <meta charset="{-code-}">
    In htaccess:
    Code:
    AddDefaultCharset {-code-}
    Change {-code-} to UTF-8 or ISO-8859-1

    In php:
    Code:
    utf8_encode();
    or
    Code:
    utf8_decode();
    According to need.



Advertisement