let out = "" for (const a of "<your stuff here>" { out += `&#${a.charCodeAt(0)};` }
let out = "" for (const a of "<your stuff here>" { out += `&#x${a.charCodeAt(0).toString(16)};` }
Let me try some things out Normally, non-English characters can't be saved.