How do I write a string that is not escaped?

<script>
document.write("

"); </script>

the

page will show

,
how I display

on the page.

write the unescaped string on the page?

Jun.11,2021

escape characters all begin with the & symbol. You can turn the & symbol into an escape character-> &

.
var s = "

" s = s.replace(/&/g,'&') document.write(s)


assign values with innerText . But the final reality is to escape & .
clipboard.png

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3afec-2af9f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3afec-2af9f.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?