If you decode this sequence
=E2=80=A6
You should get this character "…"
Instead you get "�"
Which is obviously not the right output. I succeeded in converting it using decodeURIComponent(escape(input)) but this options doesn't work all the time because, I think, should only be applied in some cases.
What I am missing here?
If you decode this sequence
=E2=80=A6
You should get this character "…"
Instead you get "�"
Which is obviously not the right output. I succeeded in converting it using
decodeURIComponent(escape(input))but this options doesn't work all the time because, I think, should only be applied in some cases.What I am missing here?