HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0002C"; } </style> </head> <body> <p>Comma using Hexa Decimal: &#x2c;</p> <p>Comma using HTML Code: &#44;</p> <p>Comma using HTML Entity: &comma;</p> <p id="point">Comma using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private