Search:

Type: Posts; User: Norm

Search: Search took 0.09 seconds.

  1. Replies
    12
    Views
    2,963

    Re: Trying to display Unicode characters

    Check the parseInt method's API doc. It defaults to base 10. 4F20 is not base 10 so you will have to specify what base you what the parseInt method to use.
  2. Replies
    12
    Views
    2,963

    Re: Trying to display Unicode characters

    Can you post code that gets that error?
  3. Replies
    12
    Views
    2,963

    Re: Trying to display Unicode characters

    Given a String as input, you could use an Integer parse method to convert that to an int value which you could then increment easily and convert its new value to hex again by using another of the...
  4. Replies
    12
    Views
    2,963

    Re: Trying to display Unicode characters

    \u is a compiler feature allowing you to enter Unicode in your source program
    In your source there is no value after the \u so the compiler complains.

    What data type is hexCode? What does it...
Results 1 to 4 of 4