Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x10FFFF (0.15 sec)

  1. src/unicode/tables.go

    		{0x9fffe, 0x9ffff, 1},
    		{0xafffe, 0xaffff, 1},
    		{0xbfffe, 0xbffff, 1},
    		{0xcfffe, 0xcffff, 1},
    		{0xdfffe, 0xdffff, 1},
    		{0xefffe, 0xeffff, 1},
    		{0xffffe, 0xfffff, 1},
    		{0x10fffe, 0x10ffff, 1},
    	},
    }
    
    var _Other_Alphabetic = &RangeTable{
    	R16: []Range16{
    		{0x0345, 0x05b0, 619},
    		{0x05b1, 0x05bd, 1},
    		{0x05bf, 0x05c1, 2},
    		{0x05c2, 0x05c4, 2},
    		{0x05c5, 0x05c7, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    0 and 255 inclusive.  Hexadecimal escapes satisfy this condition
    by construction. The escapes <code>\u</code> and <code>\U</code>
    represent Unicode code points so within them some values are illegal,
    in particular those above <code>0x10FFFF</code> and surrogate halves.
    </p>
    
    <p>
    After a backslash, certain single-character escapes represent special values:
    </p>
    
    <pre class="grammar">
    \a   U+0007 alert or bell
    \b   U+0008 backspace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top