Show hexadecimal/ASCII codes on Notepad++ 6.3

Is there a way to show the hexadecimal/ASCII for all text showing in the editor?

I use Windows XP and Notepad++ 6.3

2

6 Answers

If you're just looking for non-standard character values, you can select View > Show Symbols > Show all characters.

Classical ASCII values below 32 will be shown with the names in the top right picture here. "HT" is the Tab character with ASCII value 09, "LF" is linefeed (newline character), and so on. But most of the rest will show a hex code for the value if it's not an actual visual symbol in the current encoding.

1

Here you can find a lot of plugins for Notepad++:

An hex-editor-plugin is along too:

In addition to the plugins mentioned above, there's the TextFX plugin (explained here: )

With it, you can select TextFX Convert > Convert text to hex-16

In fact there is a plugin that comes as an "HexEditor.dll" with 270336 byte in size. Copy it to "plugin" folder.

It works with 32-bit version of Notepad++ only. Looks like there is no 64-bit Version. Unfortunately NPP disables the plugin (moves to disabled folder) when upgrading NPP. It says there are known issues. I've never ran into those. it works fine for me. Sourcecode is available and one really should forge the code and redo some stuff. I recommend the use of free hex-editor "hxd" anyway for more than a quick view into the binary.

2

I've found the HEX_Editor for Notepad++ x64.

0

Doug LN's answer is the correct one and it has made my life so much easier. It is the 64 bit compliant plugin. To get it to work on actual versions e.g Notepad++ Version 7.8.5 64bit on Windows 10 (as far off from the time of OP's question):

  1. From download the x64 version: HexEditor_0.9.8_x64.zip (or whatever the latest version is)
  2. Extract HexEditor DLL to the notepad++ plugin directory (typically C:\Program Files\Notepad++\Plugins)
  3. Launch Notepad++, click PLUGINS| PLUGINS ADMIN...
  4. Find "HexEditor" in the list, select it, and click INSTALL
  5. Notepad++ should restart, if not, do so.
  6. Open binary file, then select PLUGINS | HEX-Editor and presto.
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like