HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\02212"; } </style> </head> <body> <p>Minus using Hexa Decimal: &#x2212;</p> <p>Minus using HTML Code: &#8722;</p> <p>Minus using HTML Entity: &minus;</p> <p id="point">Minus using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private