CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Arrow Entities
HTML Arrow 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> <style> #arrow-css::after { content: "\2192"; } </style> </head> <body> <h1>HTML Arrow Entities</h1> <p>Left: ← Right: → Up: ↑ Down: ↓</p> <p>Using hex: ← → ↑ ↓</p> <p id="arrow-css">Via CSS escape: </p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run