In the UTF-8 encoding table and Unicode characters, i use the Supplementary private use area because there are single char that i m sure they won't be used in any text. The fact is now i need to find them in a text. Here's a basic example :
\u{f0001} hahrehr \u{f0002} eryteryte \u{f0003}\n yfukguk\u{f0004}\nggikggk
You can see that \u{f...} are my special chars. if we console.log this text :
console.log("\u{f0001} hahrehr \u{f0002} eryteryte \u{f0003}\n yfukguk\u{f0004}\nggikggk</");
Now i need something to find all of those special char. I thought of a regexp but I don’t know how handled the fact that \u{f...} is interpreted differently.
I know that my probleme is not very clear but i take any idea which can help me.