Copy a line of text from a website and paste it into Word: it arrives with the website's font, size, color, and link formatting intact. Paste the same text into Notepad and it arrives as stripped plain text. Same copy, different results. This is not an accident or a bug — it reflects how the Windows clipboard actually works. The clipboard stores the same content in multiple formats simultaneously, and each receiving application picks the format it prefers. Understanding this mechanism explains confusing paste behavior and gives you reliable ways to control what you get.
How the Clipboard Stores Multiple Formats
When you press Ctrl+C, the source application offers the clipboard a range of data representations of the same content. A web browser copying selected text might put onto the clipboard:
- CF_UNICODETEXT — plain Unicode text, no formatting
- CF_HTML — an HTML fragment preserving links, bold, color, font size
- CF_RTF (Rich Text Format) — formatted text compatible with Word and similar editors
- CF_TEXT — legacy ASCII text, a subset of Unicode text
All four representations of the same selection sit on the clipboard at once. The receiving application requests whichever format it knows how to use. Microsoft Word requests RTF or HTML because it can render formatting. Notepad requests CF_UNICODETEXT because it is a plain text editor. The same clipboard contents produce different output depending entirely on which format the destination app asks for.
Why This Matters in Practice
The multi-format clipboard is mostly useful — it means copying from Word into another Word document preserves your formatting automatically. The problem arises when you do not want the formatting. Common situations:
- Copying text from a webpage into an email, and the email picks up the webpage's font, size, and blue link color — making your email look inconsistent.
- Copying code from a documentation website into a Word document, and the monospace font, colored syntax highlighting, and background shading all come along.
- Copying a headline from a PDF into a presentation slide, and it arrives with the PDF's embedded font that does not match the slide template.
- Assembling content from multiple sources into a single document where each source has different formatting, producing a patchwork of styles.
Keyboard Shortcuts for Paste as Plain Text
Universal: Paste Through Notepad
The oldest workaround: paste into Notepad (which only accepts plain text), select all, copy again, then paste into your destination. This strips all formatting because Notepad only reads CF_UNICODETEXT from the clipboard. It works everywhere but adds three extra steps.
Microsoft Word and Outlook
Word and Outlook use Ctrl+Shift+V to open a "Paste Special" dialog where you can choose "Unformatted Text." Alternatively:
- After pasting with Ctrl+V, a small paste options icon appears near the pasted text. Click it (or press Ctrl immediately after pasting) to see paste format options. Select "Keep Text Only" (the A with no formatting icon).
- You can set the default paste behavior in Word: File → Options → Advanced → Cut, Copy, and Paste. Change "Pasting from other programs" to "Keep Text Only" if you always want plain text when pasting from outside Word.
Google Docs
Google Docs does not have a plain text paste shortcut by default. Options:
- Use Edit → Paste without formatting from the menu.
- Use the keyboard shortcut Ctrl+Shift+V — this pastes plain text in Google Docs specifically.
Most Browsers (Address Bar or Text Fields)
When pasting into a plain text field in a browser — a search box, a form input, a URL bar — browsers automatically strip formatting because plain text fields only accept CF_UNICODETEXT. No special shortcut needed.
Windows 11: Ctrl+Shift+V System-Wide
In many modern applications on Windows 11, Ctrl+Shift+V pastes as plain text. This works in Microsoft Edge, Chrome, Firefox, Slack, Teams, and various Office applications. It is not universal — some applications do not implement it — but it is worth trying before reaching for a workaround.
Clipboard Managers That Strip Formatting
If you frequently need plain text pastes, a clipboard manager can automate the stripping. Ditto (free, open source, ditto-cp.sourceforge.net) and the built-in Windows Clipboard History (Win+V) both show clipboard history. Some clipboard managers have a "paste as plain text" option directly in their history popup, avoiding the need to remember different shortcuts in different apps.
Windows Clipboard History (enable it in Settings → System → Clipboard) shows recent clipboard entries in a popup when you press Win+V. You can paste any previous item directly. It does not strip formatting automatically, but it provides access to earlier clipboard entries if you need to retrieve content you copied before.
A Note on Images and Files
The multi-format clipboard applies to images too. When you copy an image from a web page, the clipboard may contain the raw pixel data (CF_BITMAP), a PNG file, a path to the cached file, and an HTML fragment with an img tag — all at once. Pasting into Paint requests the bitmap. Pasting into Word may request the PNG. Pasting into a chat app that does not accept images falls back to the HTML fragment or nothing. This explains why some paste operations that seem like they should work silently produce nothing: the destination app does not understand any of the available formats on the clipboard.
Practical Defaults to Set Once
If plain text pasting is something you want routinely rather than occasionally, a few one-time configuration changes are more efficient than reaching for a shortcut every time:
- Word: Set the default paste from external sources to "Keep Text Only" in Options.
- Outlook: Do the same under File → Options → Mail → Editor Options → Advanced.
- Notion: Notion has a setting under Settings & Members → My notifications & settings to control default paste behavior for rich content.
- All apps, system-wide option: Install a clipboard manager with paste-as-plain-text as a default hotkey and use that instead of Ctrl+V as your primary paste shortcut.