HTML Entity for Square Root (√)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+221A

What You'll Learn

How to display the Square Root (√) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+221A (SQUARE ROOT) in the Mathematical Operators block (U+2200–U+22FF)—the radical sign for square root operations.

Render it with √, √, √, or CSS \221A. For complex formulas, consider MathML or LaTeX renderers; for inline text like √9 = 3, HTML entities work well.

⚡ Quick Reference — Square Root

Unicode U+221A

Mathematical Operators

Hex Code √

Hexadecimal reference

HTML Code √

Decimal reference

Named Entity √

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+221A
Hex code       √
HTML code      √
Named entity   √
CSS code       \221A
Meaning        Square root (radical)
Example        √9 = 3
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing √ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\221A";
  }
 </style>
</head>
<body>
<p>Square root (named): &radic;9 = 3</p>
<p>Square root (hex): &#x221A;16 = 4</p>
<p>Square root (decimal): &#8730;25 = 5</p>
<p id="point">Square root (CSS): 36 = 6</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Square Root (√) is supported in all modern browsers when fonts include Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the square root symbol in mathematical contexts:

Single symbol
Basic equation √9 = 3
Expression √(x² + y²)
Named entity &radic; renders as √
Numeric refs &radic; &#x221A; &#8730; \221A

🧠 How It Works

1

Named HTML Entity

&radic; is the semantic named entity for the square root radical—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x221A; uses Unicode hexadecimal 221A to display √ in HTML markup.

HTML markup
3

Decimal HTML Code

&#8730; uses decimal Unicode value 8730 for the same character.

HTML markup
4

CSS Entity

\221A is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+221A in Mathematical Operators (U+2200–U+22FF).

Use Cases

Square Root (√) commonly appears in:

📐 Mathematical expressions

Equations and formulas such as √9 = 3 or √(a² + b²).

🏫 Educational content

Textbooks, tutorials, and courses teaching algebra and calculus.

📚 Academic papers

Research documents and proofs with radical notation.

📄 Scientific documentation

Technical and engineering references with math notation.

🛠 Calculators & tools

Web-based math apps and interactive learning tools.

📝 Technical writing

Inline math in articles, docs, and blog posts.

💡 Best Practices

Do

  • Use &radic; for readable source markup
  • Write expressions like &radic;9 = 3 for clarity
  • Use MathML or dedicated math renderers for complex nested radicals
  • Pick one entity style (named, hex, or decimal) per project
  • Test rendering with math-friendly fonts

Don’t

  • Use padded Unicode notation like U+0221A—the correct value is U+221A
  • Use CSS \0221A with a leading zero—prefer \221A
  • Rely on plain ASCII sqrt() when proper math notation is expected
  • Expect HTML entities alone to draw full radical vinculums over long expressions
  • Put CSS escape \221A in HTML text nodes

Key Takeaways

1

Four HTML/CSS references all render √

&radic; &#x221A; &#8730;
2

For CSS stylesheets, use \221A in the content property

3

Unicode U+221A — SQUARE ROOT (√)

4

&radic; is the standard named entity for the radical sign

❓ Frequently Asked Questions

Use &radic; (named), &#x221A; (hex), &#8730; (decimal), or \221A in CSS content. All four render √.
U+221A (SQUARE ROOT). Mathematical Operators (U+2200–U+22FF). Hex 221A, decimal 8730, named &radic;.
The square root symbol (√) denotes finding a number that, when squared, equals the radicand. For example, √9 = 3 because 3² = 9. It is fundamental in algebra and calculus.
For mathematical expressions, educational content, scientific documentation, technical writing, academic papers, and any inline display of square root operations.
HTML references (&radic;, &#8730;, or &#x221A;) go in markup. The CSS escape \221A is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful