CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Entity for Subscript Zero (₀)
HTML Entity for Subscript Zero (₀)
Try It
Run
Reset
Save
Save to Google Drive
Sync with your Google account
Download HTML
Save to your device
Share
Full
HTML Code
Copy
<!DOCTYPE html> <html> <head> <style> #point::after { content: "\2080"; } </style> </head> <body> <h1>Subscript Zero (₀) in HTML</h1> <p>Subscript Zero using Hex Code: ₀</p> <p>Subscript Zero using HTML Code: ₀</p> <p id="point">Subscript Zero using CSS Entity: </p> <p>Semantic alternative: x<sub>0</sub></p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run