HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\000B1"; } </style> </head> <body> <p>Plus or Minus using Hexa Decimal: &#xb1;</p> <p>Plus or Minus using HTML Code: &#177;</p> <p>Plus or Minus using HTML Entity: &plusmn;</p> <p id="point">Plus or Minus using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private