KC's Workspace
    Preparing search index...

    A contiguous range of Unicode code points.

    Cannot be empty. Can represent a single code point when start == end.

    interface UnicodeRange {
        end: number;
        start: number;
    }
    Index

    Properties

    Properties

    end: number

    Inclusive end of the range. In [0, 0x10FFFF].

    start: number

    Inclusive start of the range. In [0, end].