I need to find find/replace or convert pilcrow / partial differential characters in a string as they currently show as �.
What I thought would work but doesn't:
const value = 'Javascript Regex pattern for Pilcrow (¶) or Partial Differential (∂) character';
const matches = value.match(/\u2029/gmi);
console.log(matches);
But returns empty.
To be honest, I'm not even sure how to achieve what I need to do.