It's the code I'm printing with node:
const m = `[38;5;1;48;5;16m TEST`
console.log(m)
It changes the text color. As you can see `` is a special char I don't understand(It's not being shown by the browser). How does it work?
Is there any alternative for ESC?

