A 76-character bio, styled once, no longer has one useful length.
const s = "๐๐๐ฌ๐ญ๐ก๐๐ญ๐ข๐";
[...s].length // 9 code points (and 9 graphemes here)
s.length // 18 UTF-16 units โ what String.length counts
new TextEncoder().encode(s).length // 36 UTF-8 bytes โ what storage counts






