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