Special Characters in Server MOTD

Discussion in 'Bukkit Discussion' started by JorgeEvil, Jan 1, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    JorgeEvil

    Hi,
    I was wondering how to get custom characters like '╚╝' in my server MOTD
    I've tried encoding it in UTF and it still brings up random stuff

    I know its possible because eu.oc.tc have those characters
    Thanks,
     
  2. Offline

    Minecrell

    1. Search for the character here: http://utf8-chartable.de/ (You probably need to go through some pages...)
    2. Copy the 'Unicode code point' from the first column and replace the 'U+' at the beginning with '\u'. Insert the string where you want the character in your MOTD.
    Example:
    Your two characters are here: http://utf8-chartable.de/unicode-utf8-table.pl?start=9216&number=1024

    - U+255A -> \u255A
    - U+255D -> \u255D
    Code:
    motd=-- \u255A\u255D --
    [​IMG]
     
    zipfe and X_angelz_X like this.
  3. Offline

    JorgeEvil

    Thanks!
    Speedy reply too :D
     
    CookieAvenger likes this.
  4. Offline

    X_angelz_X

    Very nice guide! Mucho gracias!
     
    Minecrell likes this.
Thread Status:
Not open for further replies.

Share This Page