Convert decimal to words
255 in decimal
two hundred and fifty-five
How it gets there
- Split into groups of three from the right
- 255 (units) → two hundred and fifty-five
- British and American reading
- This uses "and" after the hundreds, as in one hundred and one, which is the British convention. American English usually drops it. Neither changes the number.
Why the working is here
Every other converter of this kind prints the answer and stops. A base is a positional system, so the answer is a sum you can check: each digit is multiplied by the base raised to its position, and the results are added. Going the other way is repeated division, reading the remainders upwards. Neither is a black box, and this page refuses to be one.