logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Hex Viewer - Inspect Files in Hex Format | Online Free DevTools by Hexmos

Inspect files in hex format with Hexyl. Analyze byte patterns, debug data structures, and understand file contents. Free online tool, no registration required.

hexyl

A simple hex viewer for the terminal. Uses colored output to distinguish different categories of bytes. See also: od, xxd, hexdump. More information: https://github.com/sharkdp/hexyl.

  • Print the hexadecimal representation of a file:

hexyl {{path/to/file}}

  • Print the hexadecimal representation of the first n bytes of a file:

hexyl {{[-n|--length]}} {{n}} {{path/to/file}}

  • Print bytes 512 through 1024 of a file:

hexyl -r {{512}}:{{1024}} {{path/to/file}}

  • Print 512 bytes starting at the 1024th byte:

hexyl -r {{1024}}:+{{512}} {{path/to/file}}

See Also