Hex Encode & Decode
How Hex Encoding Works
Each byte of the input is converted to its two-digit hexadecimal representation.
- 1
Convert text to bytes
The input string is converted to bytes using UTF-8 encoding.
- 2
Convert each byte to hex
Each byte value (0-255) is represented as two hexadecimal digits.
FAQ
What is hexadecimal encoding?
Hexadecimal encoding represents each byte of data as two hexadecimal digits (0-9, a-f). It is commonly used in debugging, cryptography, and low-level programming.
Related Tools
π€
Base64 Encode & Decode
Encode text to Base64 or decode Base64 back to text. Supports UTF-8, URL-safe variant, and batch processing.
πURL Encode & Decode
Encode or decode URL components. Handles special characters and Unicode.
π’Number Base Converter
Convert numbers between binary, octal, decimal, and hexadecimal.