© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Satish Kandimalla
How do is display the below hex value as plain text?
My code: <p>This is a paragraph_</p> Output: In my html page, I want to display as "This is a paragraph_" But this is rendered as "This is a paragraph_"
Please help.
Syed Fazle Rahman
Building Bug0, an AI-native E2E testing platform for modern apps - co-founder & ceo @ Hashnode
Don't write &, write &.
&
&
In the above situation, write the HTML as:
<p>This is a paragraph&#x5F;</p>
Thank you Syed Fazle Rahman
Syed Fazle Rahman
Building Bug0, an AI-native E2E testing platform for modern apps - co-founder & ceo @ Hashnode
Don't write
&, write&.In the above situation, write the HTML as:
<p>This is a paragraph&#x5F;</p>