Professional Encoding & Byte Analysis
Notice: This page can make mistakes, double check, we are not responsible.
HexTxt Utility is a two-way converter between plain text and hexadecimal, with controls that matter for byte-level work: big- or little-endian byte order, several delimiter styles (space, comma-prefixed 0x, or backslash-escaped \x), and an optional UTF-8 byte order mark. It's built for people who need exact control over how bytes are formatted, not just a quick lookup.
Developers working with binary protocols, embedded systems, or file formats where byte order and delimiter formatting matter, not just the raw conversion.
What does Little Endian do here?
It swaps each pair of adjacent bytes, useful when matching how some systems store multi-byte values in memory.
Can I add a byte order mark?
Yes, the "Add UTF-8 BOM" option prepends the standard EF BB BF marker in Text to Hex mode.
Built by @toteclabs