Converts English number words into an integer.
Words to Number converts English number words like "one thousand two hundred thirty-four" into their numeric form (1234) instantly in your browser. It understands units, teens, tens, hundreds, the scale words thousand, million and billion, hyphenated forms such as forty-two, the connector "and", and negative markers like "negative" or "minus". It is handy whenever you need to turn spelled-out numbers into plain integers for code, data, or testing.
No. The conversion runs entirely in your browser using local JavaScript. Nothing you type is uploaded, logged, or sent anywhere.
Units zero through nineteen, the tens (twenty through ninety), hundred, and the scale words thousand, million and billion. It also accepts hyphenated forms like forty-two and the connector word "and".
Start the phrase with "negative" or "minus", for example "negative five" gives -5 and "minus forty-two" gives -42.
The tool reports an error naming the unrecognized word, so "one foo" fails with a message about "foo". Emoji and accented words that are not valid number words are also rejected.
No. Input is lowercased before parsing, so "ONE Thousand" and "one thousand" both convert to 1000, and extra spaces are collapsed automatically.