CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Entity for Small Roman Numeral Three (ⅲ)
HTML Entity for Small Roman Numeral Three (ⅲ)
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: "\2172"; } </style> </head> <body> <h1>Small Roman Numeral Three (ⅲ) in HTML</h1> <p>Small Roman Numeral Three using Hexa Decimal: ⅲ</p> <p>Small Roman Numeral Three using HTML Code: ⅲ</p> <p id="point">Small Roman Numeral Three using CSS Entity: </p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run