CodeToFun
Learn Programming Free
Tutorials
Languages
Features
About
Sign In
Tutorials
Languages
Features
About
Sign In
Back
/
HTML Entity for Arrow Pointing Rightwards Then Curving Downward (⤵)
HTML Entity for Arrow Pointing Rightwards Then Curving Downward (⤵)
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: "\2935"; } </style> </head> <body> <h1>Arrow right then curving down (U+2935)</h1> <p>Using Hex Code: ⤵</p> <p>Using HTML Code: ⤵</p> <p>Using Named Entity: &cudarrr;</p> <p id="point">Using CSS Entity: </p> </body> </html>
Lines:
0
| Characters:
0
Live Preview
Auto-refresh on Run