In my html page, I have a textarea tag and some text inside it. Later I will process the text.
<html>
<body>
<textarea name="" id="" cols="30" rows="10">
test
test
</textarea>
</body>
</html>
But in the output html page '& #xA;' (adding a space to avoid character from being invisible ) is being replaced with a newline. I want to see those characters as character. Basically I want to escape that from being parsed.
I did a lot of research looked at html escape characters and did not find anything.
Also I looked at a SO question here and I want to do exact opposite.
You can look at the jsfiddle here
Is there any way to escape this character.
Thank you in advance.