Hello friends, hope you all doing well. In this blog, I am going to write about special symbol creation using HTML. You can ask me why should we create them. Here is the reason:
There are some special symbols that cannot be typed using a keyboard. But we can add them to our website using some codes. I am going to explain them in detail using CodePen.
Here is the first example, creating a Trademark symbol
<body>
™
</body>
In this way, we can create many special keywords. Here is the list:
Geek Symbols
Symbol -> Name -> Code
α -> Alpha -> &alpha
β -> Beta -> &beta
γ -> Gamma -> &gamma
δ -> Delta -> &delta
ε -> Epsilon -> &epsilon
θ -> Theta -> &theta
λ -> Lamda -> &lambda
μ -> Mu -> &mu
π -> Pi -> &pi
Code for Geek symbols
<body>
<h1>Geek Symbols</h1>
α
β
γ
δ
ε
θ
λ
μ
π
</body>
Trade Symbols
Symbol -> Name -> Code
™ -> Trademark -> &trade
® -> Registered trademark -> ®
© -> Copyright -> ©
Code for Trade symbols
<h1>Trade Symbols</h1>
™
®
©
Card Symbols
Symbol -> Name -> Code
♥ -> Hearts -> heartsuit
♦ -> Diamond -> heartsuit
♠ -> Spades -> spadesuit
&Clubsuit; -> Hearts -> heartsuit
Code for Card symbols
<h1>Card Symbols</h1>
♥
♦
♣
♠
Currency Symbols
Symbol -> Name -> Code
₹ -> Indian rupee -> ₹
€ -> Euro -> &euro
₱ -> Peso -> ₱
₣ -> French Franc -> ₣
₿ -> Bitcoin -> ₿
₩ -> Won -> ₩
₽ -> Ruble -> ₽
₾ -> Lari -> ₾
Code for Currency symbols
<h1>Currency Symbols</h1>
₹
€
₱
₣
₿
₩
₽
₾
Math Symbols
Symbol -> Name -> Code
÷ -> Divide -> ÷
↑ -> Up arrow -> &uarr
→ -> Right arrow -> &rarr
↓ -> Down arrow -> &darr
← -> Left arrow -> &larr
√ -> Square root -> &radic
∝ -> Proportion -> &prop
∫ -> Integral -> &int
∴ -> Therefore -> &there4
⇒ -> Implies -> &rArr
∀ -> For all -> &forall
Code for Math symbols
<h1>Math Symbols</h1>
÷
↑
→
↓
←
√
∝
∫
∴
⇒
∀
Outputs of all the code:
The link for Code is attached here
Top comments (0)