Files
manybot/teste.js
synt-xerror b94d603572 a
2026-03-12 11:32:07 -03:00

7 lines
290 B
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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`);
}