HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\00050"; } </style> </head> <body> <p>Uppercase P using Hexa Decimal: &#x50;</p> <p>Uppercase P using HTML Code: &#80;</p> <p>Uppercase P using HTML Entity: P</p> <p id="point">Uppercase P using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private