Let's say I have this:
char registered = '®';
or an umlaut, or whatever unicode character. How could I get its code?
|
|
|
Just convert it to
In fact there's an implicit conversion from |
|||||||||||||||||
|
|
A more complete, albeit more verbose, way of doing this would be to use the Character.codePointAt method. This will handle 'high surrogate' characters, that cannot be represented by a single integer within the range that a In the example you've given this is not strictly necessary - if the (Unicode) character can fit inside a single (Java) For example, instead of
use
Not only is this slightly less code in this instance, but it will handle detection of surrogate pairs for you. |
||||
|
|
|
dear friend, Jon Skeet said you can find character Decimal codebut it is not character Hex code as it should mention in unicode, so you should represent character codes via HexCode not in Deciaml. there is an open source tool at http://unicode.codeplex.com that provides complete information about a characer or a sentece. so it is better to create a parser that give a char as a parameter and return ahexCode as string
hope it help |
||||
|
|
|
|||
|
|