Convert Hexadecimal to Decimal
Convert one or more hexadecimal numbers to their decimal (base 10) equivalents. Enter multiple values separated by spaces or newlines.
Results
Instructions
- Enter one or more hexadecimal numbers, separated by spaces or newlines.
- Example:
1A 2F 0xFF 7b
- Click Convert to see the decimal values, one per line.
- Example output:
26 47 255 123
- You can use or omit the
0x
prefix (e.g.0x10
or10
). - Invalid or non-hex values will be skipped.
Frequently Asked Questions (FAQs)
Can I enter multiple hex numbers at once?
Yes, you can enter several values separated by spaces or newlines, e.g. 1A 2F 0xFF
.
Do I need to use the 0x prefix?
No, both 0x10
and 10
are accepted as hexadecimal input.
What happens if I enter an invalid value?
Invalid or non-hexadecimal values are ignored and not shown in the results.
Is the conversion case-sensitive?
No, both uppercase and lowercase letters are accepted (e.g. 1A
and 1a
are the same).