HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\000B7"; } </style> </head> <body> <p>Middle Dot using Hexa Decimal: &#xb7;</p> <p>Middle Dot using HTML Code: &#183;</p> <p>Middle Dot using HTML Entity: &middot;</p> <p id="point">Middle Dot using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private