HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\02192"; } </style> </head> <body> <p>Right Arrow using Hexa Decimal: &#x2192;</p> <p>Right Arrow using HTML Code: &#8594;</p> <p>Right Arrow using HTML Entity: &rarr;</p> <p id="point">Right Arrow using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private