HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\00069"; } </style> </head> <body> <p>Lowercase i using Hexa Decimal: &#x69;</p> <p>Lowercase i using HTML Code: &#105;</p> <p>Lowercase i using HTML Entity: i</p> <p id="point">Lowercase i using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private