HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0003F"; } </style> </head> <body> <p>Question Mark using Hexa Decimal: &#x3f;</p> <p>Question Mark using HTML Code: &#63;</p> <p>Question Mark using HTML Entity: &quest;</p> <p id="point">Question Mark using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private