CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Entity for Asterism (⁂)
HTML Entity for Asterism (⁂)
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> hr.asterism::before { content: "\2042"; display: block; text-align: center; font-size: 1.5rem; margin: 1rem 0; } </style> </head> <body> <h1>Asterism (U+2042)</h1> <p>Using Hex: ⁂</p> <p>Using Decimal: ⁂</p> <p>Section divider:</p> <hr class="asterism" style="border:none;height:auto"> <p>Next paragraph after the break.</p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run