Hexeditor: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
(New page: == Headline text == Purpose The purpose of a hex editor is to be able to view a page in hexadecimal instead of standard ASCII. This is the main way to be able to create a binary with...)
 
(Add hex editor link descriptions and fix HexEdit link)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Purpose ==

== Headline text ==
Purpose


The purpose of a hex editor is to be able to view a page in hexadecimal instead of standard [[ASCII]]. This is the main way to be able to create a binary without needing to type extended ascii, or program at all. Hex editors are also used to convert decimal to hexadecimal vice versa.
The purpose of a hex editor is to be able to view a page in hexadecimal instead of standard [[ASCII]]. This is the main way to be able to create a binary without needing to type extended ascii, or program at all. Hex editors are also used to convert decimal to hexadecimal vice versa.
Line 7: Line 5:
Counting in hexadecimal is different from counting in decimal.
Counting in hexadecimal is different from counting in decimal.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Decimal: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31<br> Hexadecimal: 1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F

1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
== Some Hex Editors ==

[http://web.archive.org/web/20140706010326/http://www.physics.ohio-state.edu/~prewett/hexedit/ HexEdit] - hex editor for Windows <br>
[http://www.mh-nexus.de/en/hxd HxD] - freeware hex editor by Maël Hörz. <br>
[http://hexfiend.com Hex Fiend] - open source hex editor for MacOS <br>


[[Category:Tools]]
== Headline text ==
Some hex editors
[www.physics.ohio-state.edu/~prewett/hexedit/ HexEdit]
[mh-nexus.de/en/hxd HxD]
[ridiculousfish.com/hexfiend/ Hex Fiend]

Latest revision as of 15:47, 16 November 2023

Purpose

The purpose of a hex editor is to be able to view a page in hexadecimal instead of standard ASCII. This is the main way to be able to create a binary without needing to type extended ascii, or program at all. Hex editors are also used to convert decimal to hexadecimal vice versa.

Counting in hexadecimal is different from counting in decimal.

Decimal: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Hexadecimal: 1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F

Some Hex Editors

HexEdit - hex editor for Windows
HxD - freeware hex editor by Maël Hörz.
Hex Fiend - open source hex editor for MacOS