How number to words works
This converter takes any integer and writes it out in English words. It breaks the number into groups of three digits (ones, thousands, millions, billions, trillions), converts each group separately, then joins them with the appropriate scale word.
For example, 12,345 is split into 12 (thousands) and 345 (ones). The 12 becomes "twelve thousand" and the 345 becomes "three hundred and forty-five", giving "twelve thousand, three hundred and forty-five". The British convention of using "and" before the tens is followed.
The converter handles negative numbers (prefixed with "negative") and zero. It works for integers up to 999 trillion. Decimal numbers are not supported; round to the nearest integer first if needed.
Frequently asked questions
How do I convert a number to words?
Enter any integer in the field above and click Convert. The tool writes it out in English words, e.g. 1234 becomes "one thousand, two hundred and thirty-four".
What is the largest number I can convert?
The converter handles integers up to 999,999,999,999 (nine hundred ninety-nine trillion). Beyond that, the scale would need quadrillions or higher, which are not commonly used.
Can it handle negative numbers?
Yes. Negative numbers are prefixed with "negative". For example, -42 becomes "negative forty-two".
Does it support decimal numbers?
No. The converter only handles integers. If you enter a decimal, it will show an error. Round to the nearest integer first if you need to convert a decimal value.