
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML5 Mathematical operators
The HTML5 mathematical operators are used for mathematical and technical operators’ representation in an HTML document. So, to use such operators to web page, we use HTML entity name. If no entity name exists then you can use entity number which is a decimal or a hexadecimal reference.
Syntax
Following is the syntax −
&operatorName;
Or
&#operatorHexcode;
Or
&#operatorHexadecimalcode;
Let us see an example of HTML5 mathematical operators −
Example
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML5 Mathematical Operator Demo</h1> <p>Some Mathematical Symbols</p> <p>− -- minus sign</p> <p>° -- degree sign</p> <p>∑ -- sigma sign</p> <p>> -- greater than sign</p> <p>≥ -- greater than or equal to sign</p> <p>< -- less than sign</p> <p>≤ -- less than or equal to sign</p> <p>∫ -- integration sign</p> </body> </html>
Output
- Related Articles
- What are basic JavaScript mathematical operators?
- Java Program to parse a mathematical expression and operators
- Python Mathematical Functions
- Mathematical Logical Connectives
- Mathematical Foundation Introduction
- C++ Mathematical Functions
- Mathematical Functions in SQL
- Mathematical Functions in C#
- Mathematical Functions in Python?
- Mathematical Functions in Java
- Mathematical Functions using Python
- Mathematical Constants in Python
- PHP Predefined Mathematical Constants
- Mathematical statistics functions in Python
- Mathematical Logical Terms and Definitions

Advertisements