HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\00042"; } </style> </head> <body> <p>Uppercase B using Hexa Decimal: &#x42;</p> <p>Uppercase B using HTML Code: &#66;</p> <p>Uppercase B using HTML Entity: B</p> <p id="point">Uppercase B using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private