Em Space U+2003

Codepoint
U+2003
Decimal
8195
HTML
 
CSS
\2003
JS
\u2003
URL
%E2%80%83
UTF-8
E2 80 83
Category
Separator, Space (Zs)
Block
General Punctuation

The em space (U+2003) is a fixed-width space that is exactly as wide as the current font size — roughly the width of a capital "M", which is where it gets its name. It belongs to a family of Unicode "fixed-width" spaces designed for typesetting, where precise, predictable spacing matters more than the stretchy behavior of an ordinary space. Use the "Copy Em Space" button above to copy it, then paste it wherever you need a wide, consistent gap.

Unlike a regular space (U+0020), which a browser or word processor can stretch or shrink when justifying a line, the em space keeps a constant width no matter what. That makes it predictable — and occasionally useful as an "invisible" character, because some platforms that trim ordinary spaces leave the em space intact.

Common Uses

  • Precise indentation and spacing. Typographers use the em space for fixed indents and gaps that should not change with justification.
  • Aligning text in fixed-width contexts. When you need a known, repeatable amount of horizontal space.
  • Blank-looking names and messages. Because it is wider than a normal space and survives trimming on some platforms, the em space is sometimes used to create empty-looking usernames or spacing in bios. (For a truly invisible result, see or .)
  • Padding in design mockups. A quick way to add consistent space without CSS.

How to Type

PlatformMethod
Copy/pasteUse the Copy Em Space button at the top of this page.
HTML  or   or  
CSScontent: '\2003';
JavaScript'\u2003'
Python'\u2003'
WindowsNo direct shortcut — copy from this page.
macOS / LinuxNo direct shortcut — copy from this page.

The Fixed-Width Space Family

Unicode defines several fixed-width spaces. The em space and en space are the two most common:

CharacterCode pointWidthNotes
Regular SpaceU+0020VariableStretches when justified
En SpaceU+2002½ emHalf the width of an em space
Em Space (this page)U+20031 emWidth of the font size
Three-Per-Em SpaceU+2004⅓ emThin fixed space
U+00A0Like a spacePrevents line breaks

Technical Details

PropertyValue
Code pointU+2003
Decimal8195
UTF-8E2 80 83
HTML 
CategorySeparator, Space (Zs)

Detecting Em Spaces

Em spaces and other fixed-width spaces can sneak into text copied from documents or design tools and cause inconsistent spacing or failed string matches. Paste your text into the on the homepage to reveal every em space and other hidden character, then strip them with one click.

js
// JavaScript: detect and normalize fixed-width spaces to a regular spacetext.replace(/[\u2000-\u200A\u202F\u205F\u3000]/g, ' ')

Frequently Asked Questions

What is an em space?
An em space (U+2003) is a fixed-width space exactly as wide as the current font size — the width of a capital "M". Unlike a regular space, its width does not change with justification, which makes it useful for precise, predictable spacing and indentation.
How do I copy an em space?
Click the "Copy Em Space" button at the top of this page to copy it to your clipboard, then paste it anywhere. In HTML you can also write   or  .
What is the difference between an em space and a regular space?
A regular space (U+0020) is narrow and its width can stretch when text is justified. An em space (U+2003) is wider — the full width of the font size — and is a fixed width that does not stretch. An en space (U+2002) is half the width of an em space.
Can I use an em space for an invisible or blank name?
Sometimes. An em space is wider than a normal space and is not always stripped by platforms that trim regular spaces, so it can work for blank-looking names or spacing. For names that must be fully invisible, the Hangul Filler (U+3164) or Zero-Width Space (U+200B) are usually more reliable.

Related Characters

Need to detect or remove Em Space characters in your text?

Open Invisible Character Viewer