https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116872

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #8 from Jonathan Wakely <redi at gcc dot gnu.org> ---
MICRO SIGN is not listed in the charts of characters that differ from their
normalized forms: https://www.unicode.org/charts/normalization/

Running:
const micro = '\u00B5';
console.log(micro === micro.normalize('NFC'));
at e.g.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize
shows that \u00B5 does not change when normalized using NFC.

So I think we can close this.

Reply via email to