← All tools
// Numbers

Thousands Separator online

Add or remove thousands separators from numbers — comma, space, underscore, period — runs in your browser

Chunky Munster mascot
by
CHUNKY
MUNSTER
// Formatted Numbers
Output will appear here...

Large numbers are difficult to read without separators. This tool adds thousands separators to numbers in your preferred format — UK/US style commas, French-style spaces, German-style periods, Python-style underscores, or Swiss apostrophes — and can also strip separators from formatted numbers to get plain numeric values.

International Number Formatting

Frequently Asked Questions

How do I format numbers in JavaScript?

Use number.toLocaleString('en-GB') for UK formatting or new Intl.NumberFormat('de-DE').format(number) for German formatting. This tool does the same thing without code.

Can I format a list of numbers at once?

Yes. Paste one number per line and all will be formatted at once. Negative numbers and decimal numbers are both supported.