HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\0007E"; } </style> </head> <body> <p>Tilde Bold using Hexa Decimal: &#x7e;</p> <p>Tilde Bold using HTML Code: &#126;</p> <p>Tilde Bold using HTML Entity: &tilde;</p> <p id="point">Tilde Bold using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private