HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0002F"; } </style> </head> <body> <p>Slash using Hexa Decimal: &#x2f;</p> <p>Slash using HTML Code: &#47;</p> <p>Slash using HTML Entity: &sol;</p> <p id="point">Slash using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private