How to convert unicode into character in Javascript
Advertisements In some case special characters are converted into unicode like below string. how to change again into special character. Ex:- ///Incoming string "ਸਪੋਰਟਸ ਫੈਕਟਰੀ ‘ਚ ਅੱਗ ਨਾਲ ਹਾਹਾਕਾਰ ,ਦੇਖੋ ਅੱਗ ‘ਤੇ ਕਿਵੇਂ ਪਾਇਆ ਕਾਬੂ" ///Expected output "ਸਪੋਰਟਸ ਫੈਕਟਰੀ ‘ਚ ਅੱਗ ਨਾਲ ਹਾਹਾਕਾਰ ,ਦੇਖੋ ਅੱਗ ‘ਤੇ ਕਿਵੇਂ ਪਾਇਆ ਕਾਬੂ" >Solution : You can use DOMParser… Read More How to convert unicode into character in Javascript