HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\02190"; } </style> </head> <body> <p>Left Arrow using Hexa Decimal: &#x2190;</p> <p>Left Arrow using HTML Code: &#8592;</p> <p>Left Arrow using HTML Entity: &larr;</p> <p id="point">Left Arrow using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private