Excel Guide
How to Insert the Square Root Symbol in Excel
Copy the square root symbol to paste into Excel
Symbol vs. Function: Know Which One You Actually Need
This is the most common point of confusion in Excel, so let’s clear it up first:
- The symbol (√) — a Unicode text character (U+221A) you display in a cell, header or label. It does zero math.
- The SQRT function — a formula that calculates and returns the numerical root of a value.
Need a label like “√Sales” in a report header? Use the symbol. Need Excel to compute that √144 = 12? Use =SQRT(144). Both are often useful together.
Method 1: UNICHAR(8730) Formula
The most reliable method on every platform:
=UNICHAR(8730)
Type it in any cell and Excel returns √. The number 8730 is the decimal equivalent of Unicode code point U+221A. UNICHAR works in Excel 2013 and later, Excel for Mac, and Excel for the web (Microsoft 365). To concatenate it with a value:
=UNICHAR(8730)&A1— shows √144 if A1 contains 144
Method 2: Alt+251 (Windows Only)
- Double-click the target cell to enter edit mode
- Make sure NumLock is on
- Hold Alt and type
251on the numeric keypad - Release Alt — √ appears
This is the standard Windows Alt code for √ — the same one covered in our Windows keyboard guide. Requires a physical numpad.
Method 3: Insert → Symbol (All Platforms)
- Select the cell
- Click the Insert tab → Symbol
- Set Subset to Mathematical Operators
- Select √ (character code 221A, Unicode hex) → click Insert
Calculating Roots: SQRT, POWER and Caret
| Formula | Result for 144 | Notes |
|---|---|---|
| =SQRT(144) | 12 | Standard; cleanest syntax |
| =144^(1/2) | 12 | Caret exponent shorthand |
| =POWER(144,0.5) | 12 | Explicit function form |
| =SQRT(-4) | #NUM! | Negative inputs error — use ABS() workaround |
SQRT always returns the principal (non-negative) root. For negative inputs without the error: =SQRT(ABS(A1)). We explain why in Is the Square Root Always Positive?
Using √ in Charts, Headers and Custom Formats
- Chart titles / axis labels: click the title box and paste √ — renders in any chart font
- Headers & footers: Insert → Header & Footer, then paste
- Custom number format: Format Cells → Custom → enter
√0to prefix every number in that cell with √ without changing the underlying value
Frequently Asked Questions
Why doesn’t Alt+251 work in my Excel?
Two common causes: you’re pressing the top-row number keys instead of the numeric keypad, or NumLock is off. Laptops without a dedicated numpad can’t use Alt codes — use =UNICHAR(8730) or Insert → Symbol instead.
What is the difference between UNICHAR(8730) and CHAR(251)?
UNICHAR(8730) returns the true Unicode square root character (U+221A) on every system. CHAR(251) depends on the machine’s legacy Windows-1252 code page — on many systems it returns û (u with circumflex), not √. Always use UNICHAR for reliable cross-platform results.
Can I show the √ symbol next to the calculated result?
Yes — concatenate: =UNICHAR(8730)&A1&" = "&SQRT(A1) outputs “√144 = 12” in one cell. The output is text, so it won’t feed into further numerical formulas.
How do I insert √ in Excel for Mac?
Press Option + V while editing a cell — the same system-wide macOS shortcut. See our Mac guide. UNICHAR(8730) and Insert → Symbol work identically on Mac.
Will adding √ to a cell break my SUM formulas?
Yes — the moment a cell contains any text character, Excel treats the whole cell as text and SUM/AVERAGE ignore it. Keep raw numbers in data cells and place √ only in label cells or use a custom number format, which preserves the numeric value.