I wrote a code to alert the "[email protected]" like below code :
<button onclick="myfunction('[email protected]')">clicks</button>
<script charset="UTF-16">
function myfunction(str)
{
alert(str);
}
</script>
But it alerted the result like [email protected]
Also in source its looking like below:

You need to save your file with unicode encoding then try it