Hex 바이트 순서 뒤집기
16진 문자열의 바이트 순서를 뒤집어 프로토콜 분석, 파일 포맷, 패킷 검사 등의 엔디언 변환에 활용합니다.
Even number of hex digits recommended. Odd input is left-padded with a leading zero.
Bytes appear in reverse order — useful for endianness flips.
Reverse the byte order of a hexadecimal string. Networking and file-format work often involves swapping between big-endian and little-endian byte orders, and this tool performs the swap in one click.
Does this swap nibbles or bytes?
Bytes. Each pair of hex digits is treated as one byte, and the byte order is reversed.
When is reversed hex needed?
When a value was stored as little-endian and you need to read it as big-endian, or vice versa.