What is a clipboard on a computer? Where does copied text actually go?
When you press Ctrl+C, your selected text goes to "the clipboard." But where is that? What is it? Can you see it? This page explains the clipboard in plain terms.
The short answer
The clipboard is a temporary storage area in your computer's memory (RAM). It's managed by your operating system. When you copy something, the OS puts it in this memory area. When you paste, the OS reads from this area and inserts the content. It's invisible. there's no file for it, no folder, no icon.
Key facts about the clipboard
- It holds one item at a time (unless clipboard history is enabled)
- It clears when you shut down or restart
- It stores text, images, files, and rich content (formatted text, HTML)
- Every app on your computer can read from and write to the same clipboard
- It has no practical size limit for text, but large images/files may be slow
Can you see what's on the clipboard?
On Windows 10/11: press Windows+V to see clipboard history (you may need to enable it first in Settings → System → Clipboard). This shows your recent copied items.
On Mac: there's no built-in clipboard viewer. You can open Finder → Edit → Show Clipboard to see the current text item, but it's limited.
On ChromeOS: press Search+V to see your last 5 items.
Or: paste into any text field. That shows you what's currently on the clipboard. You can use our online tool. click Paste, and you'll see your clipboard contents immediately.
What happens step by step
- You select text (highlight it with mouse or keyboard)
- You press Ctrl+C (or Cmd+C on Mac)
- The operating system reads the selected content from the application
- It stores this content in a memory buffer (the clipboard)
- You click somewhere new
- You press Ctrl+V (or Cmd+V)
- The OS reads the clipboard buffer and sends the content to the active application
- The application inserts it at the cursor position
This all happens in milliseconds. The clipboard is just memory, so reading and writing to it is essentially instant.
Why does copying again erase the previous item?
The standard clipboard is designed as a single slot. When you copy something new, it overwrites the old content. There's no queue, no stack, no history by default. It's the simplest possible implementation: one slot, last write wins.
Windows clipboard history (Windows+V) and ChromeOS clipboard (Search+V) add a history layer on top. But the actual clipboard is still one item, the history is a separate feature that watches what goes into the clipboard and keeps copies.
Types of clipboard content
Plain text: What you get from Ctrl+Shift+V. Just characters, no formatting.
Rich text: Formatted text with fonts, colors, sizes. What normal Ctrl+V usually pastes from web pages.
HTML: Some apps put raw HTML on the clipboard when you copy from web pages.
Images: Screenshots go to clipboard. Some apps let you copy images directly.
Files: When you Ctrl+C a file in File Explorer, a reference to that file goes to clipboard.
The clipboard can hold multiple formats simultaneously. When you copy formatted text, both the rich text version AND the plain text version are stored. The application you paste into chooses which format to use.
Online clipboards
An online clipboard like ClipboardSyncer works differently. Instead of storing text in RAM (which is temporary), it stores text in your browser's localStorage (which persists). It's a complement to the system clipboard, not a replacement. Use the system clipboard for quick within-app copies. Use an online clipboard for text you want to keep or share between devices.
Related: Clipboard for computer · Keyboard shortcuts · Online clipboard