HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\00026"; } </style> </head> <body> <p>Ampersand using Hexa Decimal: &#x26;</p> <p>Ampersand using HTML Code: &#38;</p> <p>Ampersand using HTML Entity: &amp;</p> <p id="point">Ampersand using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private