Solved help!

Discussion in 'Plugin Development' started by LeeoSantos, Nov 15, 2013.

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

    LeeoSantos

    is there any way to use these characters in eclipse without giving error?

    Ⓐ Ⓑ Ⓒ Ⓓ Ⓔ Ⓕ Ⓖ Ⓗ Ⓘ Ⓙ Ⓚ Ⓛ Ⓜ Ⓝ Ⓞ Ⓟ Ⓠ Ⓡ Ⓢ Ⓣ Ⓤ Ⓥ Ⓦ Ⓧ Ⓨ Ⓩ ⓐ ⓑ ⓒ ⓓ ⓔ ⓕ ⓖ ⓗ ⓘ ⓙ ⓚ ⓛ ⓜ ⓝ ⓞ ⓟ ⓠ ⓡ ⓢ ⓣ ⓤ ⓥ ⓦ ⓧ ⓨ ⓩ

    when i put it in eclipse happens

    http://i.imgur.com/pUdWKWC.png


    sorry for my bad english.
     
  2. Offline

    GusGold

    LeeoSantos
    Use unicode character encoding.
    They all begin with "\u" and will be proceeded by a hexadecimal(0-9 & a-f giving 0-f) number. Here's a table to get you going: http://www.texttranslater.com/unicodelist/enclosed-alphanumerics.php
    As you can see, 0x24B6 is the Ⓐ character. The 'ox' simply defines the number is being in base 16 (aka hexadecimal), so you can replace the 'ox' with '\u' and when you print it, it will be automatically converted to the character!
     
    LeeoSantos likes this.
  3. Offline

    LeeoSantos

  4. Offline

    GusGold

    LeeoSantos likes this.
Thread Status:
Not open for further replies.

Share This Page