Skip to content

Nth root symbol copy and paste — every format

Whatever you're pasting into — a browser, LaTeX document, spreadsheet, or CSS file — grab the exact nth root symbol format it expects, including the one index (4) that has a real character of its own.

Text & code

Generic symbol

ⁿ√

4th root (dedicated character)

4th root Unicode code point

U+221C

5th root, composed

⁵√

6th root, composed

⁶√

HTML entity (4th root, numeric)

∜

LaTeX (variable index)

\sqrt[n]{x}

LaTeX (specific index, e.g. 5th root)

\sqrt[5]{x}

Building it yourself: Unicode composition

Base radical

√ — U+221A

Superscript 2–9

² ³ ⁴ ⁵ ⁶ ⁷ ⁸ ⁹ — U+00B2–U+00B3, U+2074–U+2079

Superscript n (generic placeholder)

ⁿ — U+207F

Keyboard shortcuts

Windows

No Alt-code for a combined symbol — use the equation writer

Windows Unicode input (4th root)

221C, Alt + X

Mac

No Option-key shortcut — use Character Viewer

Spreadsheets

Excel / Google Sheets formula (n in cell B1)

=A1^(1/B1)

Same, safe for negative A1 with odd B1

=SIGN(A1)*ABS(A1)^(1/B1)

Need a whole equation, not just the symbol?

The equation writer builds a copyable nth-root expression for any index you choose — like ⁵√(32) — instead of a bare symbol.

Open the equation writer

Writing software instead of a document?

See Unicode escapes, LaTeX, and the actual nth-root formula across JavaScript, Python, Excel, and more — plus where odd and even indexes diverge on negative numbers.

Open nth root in code

Frequently asked questions

What is the Unicode code point for the nth root symbol?

There isn't one — n varies, so there's no single dedicated character the way square root (U+221A) and cube root (U+221B) have their own. The one exception is the 4th root, ∜, which is U+221C. Any other index is composed from a superscript digit (or digits) followed by the base radical, U+221A.

How do I add an nth root symbol in HTML?

For the 4th root specifically, use the numeric entity ∜ or paste ∜ directly. For any other index, combine a superscript-digit entity — ⁵ for 5 (⁵), for example — immediately before √ (√), or just paste the composed text from the equation writer.

What's the LaTeX command for an nth root?

\sqrt[n]{x} for a variable index, or \sqrt[5]{x}, \sqrt[12]{x}, etc. for a specific one — replace the bracketed number with whatever index you need. Dropping the brackets entirely, \sqrt{x}, gives a plain square root. Works in LaTeX, MathJax, and KaTeX.

How do I calculate an nth root in Excel or Google Sheets?

Neither app has a built-in NTHROOT function. Use =A1^(1/B1), where A1 is the number and B1 is the index. If A1 can be negative and B1 is odd, use =SIGN(A1)*ABS(A1)^(1/B1) instead — a plain =A1^(1/B1) returns a #NUM! error for a negative base whenever the exponent isn't a clean reciprocal of an odd integer.

Is there a Windows alt code for the nth root symbol?

Not for a combined symbol with an arbitrary index — Windows' legacy Alt-codes only cover a fixed set of characters, and a composed ⁿ√ isn't one of them. The 221C + Alt + X trick does work for the 4th root specifically, the same way 221A + Alt + X produces the plain radical. For any other index, generate the symbol with the equation writer and copy it.