HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0007B"; } </style> </head> <body> <p>Left Brace using Hexa Decimal: &#x7b;</p> <p>Left Brace using HTML Code: &#123;</p> <p>Left Brace using HTML Entity: &lbrace;</p> <p id="point">Left Brace using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private