HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\02191"; } </style> </head> <body> <p>Up Arrow using Hexa Decimal: &#x2191;</p> <p>Up Arrow using HTML Code: &#8593;</p> <p>Up Arrow using HTML Entity: &uarr;</p> <p id="point">Up Arrow using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private