JSFiddle - React, Tailwind, and code Playground
HTML
Look in the console.
JavaScript
const s = "πππ";
console.log("Characters:");
for (const char of s) {
console.log(char);
}
console.log("Code units (blech):");
Array.prototype.forEach.call(s, console.log);