This commit is contained in:
synt-xerror
2026-03-12 11:32:07 -03:00
parent 5ba68c9ee3
commit b94d603572
9 changed files with 141 additions and 51 deletions

7
teste.js Normal file
View File

@@ -0,0 +1,7 @@
const str = "<22>»⃟⃫⚡<EFB88F><E283A5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
// percorre cada caractere
for (const char of str) {
const code = char.codePointAt(0); // pega o ponto de código Unicode
process.stdout.write(`${char} (U+${code.toString(16).toUpperCase()})\n`);
}