tags:

views:

53

answers:

3

Is there a tool out there that provides unicode codepoint display? Kind of like a hex editor except the codepoints would be displayed rather than bytes.

to clarify:

I want to be able to display a document (either a file, or paste what's in the clipboard), and have two views of that document at once,

  • the original text including unicode characters displayed normally
  • a list of codepoints corresponding to those characters

and it should be able to highlight an individual character in both views so I can see what codepoint corresponds to a particular character I'm interested in.

Read-only features would be fine for what I need, but read-write would also be nice.

A: 

Not sure if that's exactly what you ask, but for Windows (you didn't specified a platform...), I found an invaluable tool in BabelMap.

PhiLho
That looks like a useful character set viewer, but it's not what I'm looking for.
Jason S
You can see the code points in BabelMap -- radio buttons on the bottom translate between the character glyph, hex, decimal, etc. You can also paste into BabelMap and then translate to the code points.
Dave
It allows to jump to a given codepoint (given in hexa or decimal).But it doesn't convert from UTF-8.I never saw (yet) a tool as you describe it. Might be interesting to code... :)
PhiLho
I tried that, it's an either-or display. I want to see both at once.
Jason S
+1  A: 

On Windows there are two tools you'll need if you want to study Unicode files BabelPad and BabelMap.

Regarding you question: in order to see the code-points of a Unicode string I just paste the string to BabelMap.

In addition, my favorite editor is Notepad++ and I'm doing a lot of work using Unicode files (I work in i18n field)

Sorin Sbarnea
A: 

dear Jason

I know an open source tool on http://unicode.codeplex.com that you can give it an unlimited string and it gives you entire string Hex Code. you can also give it a series of hexcode and it convert all of it to a complete sentence.

it also include latest Unicode Character Dtabase provided by unicode.org (annex #44) that contains all of unicode 5.2 charactr information.

just take a look, I'm sure you'll be satisfy

Nasser Hadjloo