author: Gregory Vinčić | modified: 2026-05-10 | created: 2025-01-28

inthex

inthex helps you understand byte data from either integer or hex values.

Quick start

$ go install sogvin.com/inthex@latest $ inthex --help Usage: inthex [OPTIONS] [INPUT] Options -i input values are integers -x convert string to hex Examples Convert hex $ inthex 6272c3b664 # int hex binary rune 98 62 01100010 b 114 72 01110010 r 195 c3 11000011 | 182 b6 10110110 +- ö 100 64 01100100 d # bröd Optional input formats Integers $ inthex -i 1 2 3 Space separated hex $ inthex AA BB CC f8 0x prefixed and comma separated $ inthex 0xab, 0x11, aa Opaque $ inthex ab817801 Stream $ echo "abcd" | inthex

Changelog


# Changelog

This project adheres to semantic versioning and all major changes will
be noted in this file.

## [0.5.0] 2026-05-10

- Renamed project from ix to inthex (easier to remember)