CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Number Entities
HTML Number Entities
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> <meta charset="utf-8"> <style> .circled-one::after { content: "\2776"; } </style> </head> <body> <h1>HTML Number Entities</h1> <p>Decimal digits: 012 (same as 012)</p> <p>Fractions: ½ ¼ ¾</p> <p>Superscript: 10² m³</p> <p>Circled via CSS: <span class="circled-one"></span></p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run