Skip to main content

Number to Words: Cheque Amounts, Big Numbers, and Ordinals

A practical guide to turning a number to words in English — how to write cheque amounts, spell million and billion correctly, and form ordinals without the classic mistakes.

Published By 李雷
#number to words #cheque amount #ordinals #english writing

Number to Words: Cheque Amounts, Big Numbers, and Ordinals

The first cheque I ever wrote came back. Not because the funds weren't there, but because I'd written "One Hundred and Fifty Dollars" on the legal line and my bank's clearing rules wanted the "and" somewhere else entirely. A teller circled it in red. That tiny wording slip taught me that spelling a number out in English is a small craft with real rules — rules that banks, contracts, and grammar teachers all care about for different reasons.

This guide walks through the parts that trip people up: writing a cheque amount, handling decimals, spelling large numbers like million and billion, and forming ordinals. If you'd rather just type a figure and copy the answer, the Number to Words converter does all of this in your browser. But knowing why the words look the way they do is what keeps your cheque from bouncing on a technicality.

How a cheque amount is actually written

A cheque has two places for the amount: a small box that takes digits, and a longer line that needs words. The words line exists for one reason — to be tamper-proof. A digit is easy to alter; a spelled-out, title-cased phrase is not.

Take 1234.56. The standard cheque wording is:

One Thousand Two Hundred Thirty-Four and 56/100 Dollars

Three details make that correct. First, every word is capitalised (title case) so no one can squeeze an extra word in. Second, the cents are written as a fraction over one hundred — 56/100 — because writing ".56" would be trivial to change into ".96". Third, the word "and" appears exactly once, separating the dollars from the cents, and never inside the dollar amount itself.

That last point is the one I got wrong on my first cheque. On the legal line, "and" is a unit separator, not a grammar word. So a flat hundred-and-fifty reads "One Hundred Fifty and 00/100 Dollars" — the internal "and" is dropped.

British "and" versus American: a real difference

Outside the cheque line, the "and" question is purely regional. American English skips it: one hundred five, two thousand one. British English inserts it: one hundred and five, two thousand and one. According to the Oxford English usage guidance on cardinal numbers, the British convention places "and" before the final two-digit (or single-digit) group when there's a hundreds or thousands part — and both forms are considered fully correct, just regionally bound.

So which do you use? Match your audience. A school worksheet in London wants the "and"; an American legal template usually omits it. The point is to be consistent within one document, not to pick a universally "right" form — there isn't one.

Decimals: read them digit by digit

People reach for the wrong reflex on decimals all the time. The number 3.14 is "three point one four", not "three point fourteen". The digits after the point are spoken individually for a concrete reason: if you said "fourteen", then 3.14 and 3.014 would sound identical, and you'd have no way to hear the difference over the phone.

This is why a plain words-mode reading treats the fractional part as a string of single digits after the word "point". It matches how people actually speak version numbers, serial numbers, and constants. Cheque mode is the exception — there, the value rounds to two decimal places because a currency only has cents, and those two digits become the fraction over 100.

Spelling million, billion, and the precision trap

Large numbers introduce two separate problems: naming the groups, and not losing digits along the way.

The naming is the easy part once you know the ladder — thousand, million, billion, trillion, quadrillion, each one a thousand times the last in the short-scale system used across English finance and journalism. So 5,200,000 is "five million two hundred thousand", and an empty group simply vanishes: 1,000,005 is "one million five", not "one million five thousand".

The precision part is where real bugs live. If a converter parses your input into a JavaScript float before spelling it, any value above 2^53 — roughly 9 quadrillion — silently rounds. Spell 9,000,000,000,000,001 through a naive script and the trailing 1 disappears into "...zero". A correct converter reads the digit string directly (using BigInt for the arithmetic), so every digit survives. If you're spelling amounts longer than 15 digits, always check the words back against your source figure.

Here's a clean worked example from end to end:

Input:  1234.56   (Cheque mode, Dollars)
Output: One Thousand Two Hundred Thirty-Four and 56/100 Dollars

Need the same value rendered as grouped digits or scientific form instead of words? A number formatter handles thousands separators and rounding for the digit side of the same figure.

Ordinals: first, twenty-first, one hundredth

Ordinals describe position — first, second, third — and they follow a few stacking rules that look fussy until they click.

The first three are irregular: 1 → first, 2 → second, 3 → third. From 4 onward you mostly add -th: fourth, fifth, sixth. The twist is what happens with compound numbers: only the last word takes the ordinal ending. So 21 is "twenty-first", not "twenty-oneth"; 42 is "forty-second"; 100 is "one hundredth". Numbers ending in -y swap the y for -ieth: twenty → twentieth, ninety → ninetieth.

The common classroom error is making the whole phrase ordinal ("twenty-firstst") or applying -th to the irregular roots ("oneth", "twoth"). Showing students the cardinal and ordinal side by side — twenty-one becomes twenty-first — makes the rule visible fast.

Currencies, scripts, and related conversions

Cheque wording isn't dollar-only. The same structure works for Pounds, Euros, Rupees, Yuan, and Yen — only the currency word and minor unit change. If you also need to move between currencies before spelling the total, a currency converter gives you the figure; then spell that.

Two adjacent jobs are worth knowing about. For Chinese cheque amounts and the formal 壹贰叁 characters, English words won't help — use a Chinese numeric converter instead. And for the entirely different system of I, V, X, L on clock faces and book chapters, a Roman numeral converter is the right tool. Spelling numbers in words, in another language, or in another notation are three separate crafts that happen to start from the same digits.

The short version

Write cheques in title case with one "and" between dollars and cents. Read decimals digit by digit. Spell big numbers off the digit string, not a float, or you'll lose the tail. Put the ordinal ending only on the last word. Get those four right and you'll never have a teller circle your cheque in red.


Made by Toolora · Updated 2026-06-13