I want to encrypt the html and i want to get the result only in numbers and percentage. But i don't want to see any characters(A-Z,a-z). example, look at this website: https://www.webtoolhub.com/tn561359-html-encrypter.aspx
Encrypting using that website, only giving the numeric and percentage. I have gone through several questions on stack overflow. But some are saying it's not encrypting, it's some percent-encoding like that. I don't know that, but I need that output for one of my clients to secure the html code or any text. I tried, escape, encodeURI, encodeURIComponent, but no use. I see the characters in every attempt.
Please someone help me with this.
For your reference i'm adding one line and that encryption of the line.
line: Someone please help me how to achieve it.
Encryption:
<script type="text/javascript">
<!-- HTML Encryption provided by www.webtoolhub.com -->
<!--
document.write(unescape('%53%6f%6d%65%6f%6e%65%20%70%6c%65%61%73%65%20%68%65%6c%70%20%6d%65%20%68%6f%77%20%74%6f%20%61%63%68%69%65%76%65%20%69%74%2e'));
//-->
</script>