HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0002B"; } </style> </head> <body> <p>Plus using Hexa Decimal: &#x2b;</p> <p>Plus using HTML Code: &#43;</p> <p>Plus using HTML Entity: &plus;</p> <p id="point">Plus using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private