1. CSS all property

    A shorthand property for resetting all CSS properties except for `direction` and `unicode-bidi`.

  2. Font unicode-range subsetting

    This @font-face descriptor defines the set of Unicode codepoints that may be supported by the font face for which it is declared. The descriptor value is a comma-delimited list of Unicode range (<urange>) values. The union of these ranges defines the set of codepoints that serves as a hint for user agents when deciding whether or not to download a font resource for a given text run.

  3. KeyboardEvent.charCode

    A legacy `KeyboardEvent` property that gives the Unicode codepoint number of a character key pressed during a `keypress` event.

  4. fontface api: unicoderange

  5. css property: font-variant-emoji: unicode

  6. css property: unicode-bidi

  7. css property: unicode-bidi: bidi-override

  8. css property: unicode-bidi: embed

  9. css property: unicode-bidi: isolate

  10. css property: unicode-bidi: isolate-override

  11. css property: unicode-bidi: normal

  12. css property: unicode-bidi: plaintext

  13. types: `<string>`: unicode escaped characters (`\xx`)

  14. javascript built-in: regexp: unicode

  15. javascript built-in: regexp: unicodesets

  16. javascript built-in: string: unicode code point escapes \u{xxxxxx}

  17. grammar: unicode escape sequences (`'\u00a9'`)

  18. grammar: unicode point escapes (`\u{}`)

  19. regular_expressions: character escape: `\n`, `\x`: unicode character escape: `\u{...}`

  20. regular_expressions: unicode character class escape: `\p{...}`, `\p{...}`

  21. global_attributes: unicode-bidi