Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.13 seconds.

  1. Replies
    3
    Views
    1,485

    Re: Need to print Multibyte character.

    Java is parsing it correctly. A single \ escapes a character. So two slashes results in the first \ escaping the second \, which creates a plain-old slash character. Anything following it will be...
  2. Replies
    3
    Views
    1,485

    Re: Need to print Multibyte character.

    You're using two slashes. The first slash escapes the second slash, turning it into a slash character instead of an escape character.

    If you want to escape the unicode value, use a single slash...
Results 1 to 2 of 2