How to Use Superscript in Find and Replace (Word, Google Docs & More)
Superscript formatting — those small raised characters used for footnotes, exponents, ordinal numbers, and trademark symbols — is straightforward to apply manually. But searching for it, or replacing text with superscript formatting using Find and Replace? That's where most users hit a wall. The tools exist, but they work differently depending on which application you're using and what exactly you're trying to do.
What "Superscript in Find and Replace" Actually Means
There are two distinct tasks people mean when they ask this question:
- Finding text that is already formatted as superscript — locating every instance of raised text in a document
- Replacing text with superscript formatting applied — swapping out a character or string and making the result appear as superscript
Both are possible in most major word processors, but neither is available through the basic Find and Replace dialog. You need to dig into advanced or extended search options to work with formatting attributes.
How to Find and Replace Superscript in Microsoft Word
Microsoft Word has the most robust support for formatting-aware Find and Replace through its Find and Replace with More options panel.
Finding Existing Superscript Text
- Open Find and Replace (
Ctrl+Hon Windows,Cmd+Hon Mac) - Click More >> to expand the dialog
- Place your cursor in the Find what field
- Click Format at the bottom of the dialog, then select Font
- In the Font dialog, check Superscript under Effects
- Leave the text field blank if you want to find any superscript, or type a specific character to narrow the search
- Click Find Next
Word will highlight text matching that formatting condition.
Replacing Text With Superscript Applied
- Follow the same steps above to set up your Find what field
- Click inside the Replace with field
- Type the replacement text
- With your cursor still in the Replace with field, click Format → Font and check Superscript
- Click Replace All
⚠️ One important detail: the Format label appears below whichever field your cursor is currently in. Make sure you're setting the formatting condition on the correct field — Find or Replace — before clicking Format.
Removing Superscript Formatting via Find and Replace
The same workflow works in reverse. Set the Find what field with Superscript formatting, then set the Replace with field with Not Superscript (uncheck Superscript in the Font dialog while in Replace) to strip the formatting from matched text.
How to Handle Superscript in Google Docs
Google Docs does not support formatting-based Find and Replace natively. The built-in Find and Replace tool (Ctrl+H) only searches text content — it has no option to filter or apply character formatting like superscript.
Your options in Google Docs:
- Manual replacement — use
Format → Text → Superscriptor the keyboard shortcut (Ctrl+.) after selecting text - Google Apps Script — for bulk operations, a custom script can iterate through document body elements, check for superscript formatting, and apply replacements programmatically. This requires some familiarity with JavaScript and the Apps Script editor (
Extensions → Apps Script) - Export to Word — if you're doing heavy formatting-based search work, opening the file in Word (or LibreOffice Writer) and using its Find and Replace, then re-importing, is a practical workaround
LibreOffice Writer: A Middle Ground 🔍
LibreOffice Writer offers formatting-aware Find and Replace similar to Word, though the interface differs slightly.
- Open Find and Replace (
Ctrl+H) - Click Other Options to expand
- Check Regular Expressions if needed, or use the Attributes button (in some versions) to specify character formatting
- Alternatively, use Format → Character within the Find toolbar to specify superscript as a search attribute
LibreOffice's implementation can vary slightly between versions, so the exact menu path depends on which release you're running.
Special Characters vs. Formatting: An Important Distinction
It's worth separating two scenarios that often get confused:
| Scenario | What It Is | Find & Replace Approach |
|---|---|---|
| Superscript formatting | Normal text visually raised via font attribute | Format-aware Find & Replace (Word/LibreOffice) |
| Unicode superscript characters | Actual distinct characters (e.g., ² U+00B2) | Standard text search — no formatting needed |
| Footnote reference marks | Auto-generated numbers tied to footnotes | Use footnote management tools, not Find & Replace |
Unicode superscript digits (like ², ³, ¹) are real text characters. You can find and replace them using any standard search tool because they're not formatting — they're distinct code points. This is the easiest case to handle.
True superscript formatting applied to regular text requires a formatting-aware tool, which is where Word and LibreOffice have a clear advantage over simpler editors.
Variables That Affect Your Workflow
How smoothly this process goes depends on several factors specific to your situation:
- Which application you're using — Word has the most direct support; Google Docs requires workarounds
- Volume of replacements — a handful of instances favors manual editing; hundreds favor scripted or automated approaches
- Document origin — files converted from PDF or other formats sometimes carry pseudo-superscript (shifted baseline, smaller font size) rather than true superscript formatting, which Find and Replace won't catch
- Technical comfort level — Apps Script solutions in Google Docs are genuinely powerful but assume scripting familiarity
- Document structure — headers, text boxes, and footnote fields in Word sometimes behave differently from body text during bulk replacements
The right method for a two-page document with three footnotes looks very different from the right method for a 200-page technical manual with hundreds of formatted exponents. 📄