WikiGalaxy

Personalize

HTML Symbols

Introduction:

HTML symbols are used to represent special characters that are not readily available on the keyboard. They ensure proper rendering across different browsers and platforms.

Example of an Arrow:

The right arrow symbol can be represented using "→".


                <p>Follow the instructions &rarr; to complete the task.</p>
            

Rendered Output:

Follow the instructions → to complete the task.

Mathematical Symbols

Common Mathematical Symbols:

HTML provides entities for mathematical symbols such as "&times;" for multiplication (×) and "&divide;" for division (÷).


                <p>5 &times; 3 = 15 and 10 &divide; 2 = 5.</p>
            

Rendered Output:

5 × 3 = 15 and 10 ÷ 2 = 5.

Currency Symbols

International Currency Symbols:

HTML supports various currency symbols, such as "&pound;" for the British Pound (£) and "&yen;" for the Japanese Yen (¥).


                <p>The cost is 100 &pound; or 15000 &yen;.</p>
            

Rendered Output:

The cost is 100 £ or 15000 ¥.

Geometric Shapes

Using Geometric Shapes:

HTML symbols include geometric shapes like "&loz;" for a lozenge (◊) and "&spades;" for a spade suit (♠).


                <p>The card suits are &spades;, &hearts;, &diams;, and &clubs;.</p>
            

Rendered Output:

The card suits are ♠, ♥, ♦, and ♣.

Punctuation Marks

Special Punctuation Marks:

HTML symbols also cover punctuation marks like "&hellip;" for ellipsis (…) and "&mdash;" for em dash (—).


                <p>Wait for it&hellip; it's coming soon!</p>
            

Rendered Output:

Wait for it… it's coming soon!

Miscellaneous Symbols

Other Useful Symbols:

HTML includes a variety of miscellaneous symbols such as "&copy;" for copyright (©) and "&reg;" for registered trademark (®).


                <p>All rights reserved &copy; 2023 Company Name.</p>
            

Rendered Output:

All rights reserved © 2023 Company Name.

logo of wikigalaxy

Newsletter

Subscribe to our newsletter for weekly updates and promotions.

Privacy Policy

 • 

Terms of Service

Copyright © WikiGalaxy 2025