is the HTML non-breaking space entity. If you searched for , the short answer is: it creates a space that will not collapse or wrap onto a new line.
Quick answer
stands for non-breaking space.- HTML code:
- Unicode code point:
- Use it when two tokens must stay together on one line.
Why nbsp appears in email work
Email clients often normalize regular spaces aggressively. In transactional templates, that can cause awkward wraps or broken formatting in:
- OTP and code messages
- prices and currency values
- names and initials
- short labels before values
A non-breaking space prevents those tokens from splitting across lines.
Regular space vs non-breaking space
| Space type | HTML form | Wrap behavior | Typical use |
|---|---|---|---|
| Regular space | | Can wrap/collapse | normal sentence text |
| Non-breaking space | | Stays on same line | short fixed token pairs |
Safe uses in email templates
Use when you need predictable rendering:
Avoid overusing it in large blocks of paragraph text, where it can create uneven wrapping.
Example HTML
QA checklist for nbsp in emails
- Preview on webmail + desktop + mobile clients.
- Check wrapped lines around prices, OTP, and IDs.
- Confirm copy/paste behavior still looks normal.
- Verify no accidental double-entities like
. - Include regression checks in CI for critical templates.
For full pre-release checks, use Email testing tools and Email deliverability test workflows.
Related pages
- NBSP HTML entities guide
- NBSP character quick page
- NBSP keyword quick explainer
- Send HTML email in Gmail
- Email template size guidance
- Email header analyzer
FAQ
What does nbsp mean?
It means non-breaking space: a space character that keeps adjacent text on one line.
Is nbsp the same as a normal space?
No. A normal space can wrap and collapse; is preserved and non-breaking.
Can nbsp hurt deliverability?
By itself, no. But poor HTML or overuse can hurt rendering quality, so test templates before launch.