CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Currency Entities
HTML Currency 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> .currency-css::after { content: "\20AC"; } </style> </head> <body> <h1>HTML Currency Entities</h1> <p>Dollar: $ | Cent: ¢ | Pound: £</p> <p>Euro: € | Yen: ¥ | Rupee: ₹</p> <p>Euro via CSS: <span class="currency-css"></span></p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run