Hexadecimal (base16) is a numerical system widely used in programming and digital systems. Each hex digit represents 4 bits (0-9 and A-F), making it more compact than binary representation. Key technical aspects:
Our tool automatically filters non-hex characters (0-9, A-F). Example: Input "48!e@6c" becomes "486c".
Common causes: 1. Incorrect encoding selection 2. Incomplete bytes 3. Unsupported characters. Try UTF-8 first.
Supports text files up to 10MB. Binary files are converted to their hex representation for decoding.
Encoding | Characters Supported | Common Usage | Byte Length |
---|---|---|---|
UTF-8 | Full Unicode | Web, Modern Apps | 1-4 bytes |
ASCII | 128 English | Basic Text | 1 byte |
GBK | Simplified Chinese | Chinese Systems | 2 bytes |
Shift_JIS | Japanese | Legacy Systems | 1-2 bytes |