I have a string which basically looks like this:
20 pcs 1/4" d 13/32" l shank copper round head solid rivets fasteners
or :
20 Pcs 1/4" D 13/32" L Shank Copper Round Head Solid Rivets Fasteners
Where " should be represented as: " characther...
In my JS method I set the label value to following:
function WriteTitle(sentTitle){
$("#myTitle").text(sentTitle);
}
I have tried using methods like decodeURIComponent, unescape or similar to parse these characthers but no luck so far...
How can I parse these into normal characters?