Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for it0061 (0.18 sec)

  1. src/unicode/tables.go

    		{0x100000, 0x10fffd, 1},
    	},
    }
    
    var _Cs = &RangeTable{
    	R16: []Range16{
    		{0xd800, 0xdfff, 1},
    	},
    }
    
    var _L = &RangeTable{
    	R16: []Range16{
    		{0x0041, 0x005a, 1},
    		{0x0061, 0x007a, 1},
    		{0x00aa, 0x00b5, 11},
    		{0x00ba, 0x00c0, 6},
    		{0x00c1, 0x00d6, 1},
    		{0x00d8, 0x00f6, 1},
    		{0x00f8, 0x02c1, 1},
    		{0x02c6, 0x02d1, 1},
    		{0x02e0, 0x02e4, 1},
    		{0x02ec, 0x02ee, 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

    UTF-8-encoded bytes may represent a single integer value.  For
    instance, the literal <code>'a'</code> holds a single byte representing
    a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while
    <code>'รค'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing
    a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>.
    </p>
    
    <p>
    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