Open In App
Related Articles

HTML5 | Mathematical operators

Improve Article
Improve
Save Article
Save
Like Article
Like

Mathematical Operators are used for representation of mathematical and technical operators. In HTML5 some special codes are used. For the representation of these operators we can use the name or hexadecimal(Hex) reference.

Examples:

Input : &minus or &#8722 
Output : -
Input : &times or &#215
Output : x
Input : &frac34 or &#190
Output : 3/4




<!DOCTYPE html>
<html>
<body>
   
  <p>∑</p>
  <p>&#8721</p>
  <p>°</p>
  <p>&#176</p>
  <p>≈</p> 
  <p>&#8776</p>
</body>
</html>


Output:


In writing the hex reference in html code, a semicolon is required at the end.
Some Common mathematical Characters are-

Some Complex mathematical symbols are-

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 03 Dec, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials