Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Aacute (0.32 sec)

  1. src/mdo/reader-stax.vm

            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
            entities.put("acirc", "\u00e2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
            entities.put("szlig", "\u00df");
            entities.put("agrave", "\u00e0");
            entities.put("aacute", "\u00e1");
            entities.put("acirc", "\u00e2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/encoding/xml/xml.go

    	"AElig":    "\u00C6",
    	"Ccedil":   "\u00C7",
    	"Egrave":   "\u00C8",
    	"Eacute":   "\u00C9",
    	"Ecirc":    "\u00CA",
    	"Euml":     "\u00CB",
    	"Igrave":   "\u00CC",
    	"Iacute":   "\u00CD",
    	"Icirc":    "\u00CE",
    	"Iuml":     "\u00CF",
    	"ETH":      "\u00D0",
    	"Ntilde":   "\u00D1",
    	"Ograve":   "\u00D2",
    	"Oacute":   "\u00D3",
    	"Ocirc":    "\u00D4",
    	"Otilde":   "\u00D5",
    	"Ouml":     "\u00D6",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/map.go

    						switch c.src[c.pSrc+1] {
    						case 0x80: // U+0300 COMBINING GRAVE ACCENT
    							s = "\u00cc" // U+00CC LATIN CAPITAL LETTER I WITH GRAVE
    						case 0x81: // U+0301 COMBINING ACUTE ACCENT
    							s = "\u00cd" // U+00CD LATIN CAPITAL LETTER I WITH ACUTE
    						case 0x83: // U+0303 COMBINING TILDE
    							s = "\u0128" // U+0128 LATIN CAPITAL LETTER I WITH TILDE
    						case 0x88: // U+0308 COMBINING DIAERESIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/unicode/letter_test.go

    	{UpperCase, 0xA65F, 0xA65E},
    	{LowerCase, 0xA65F, 0xA65F},
    	{TitleCase, 0xA65F, 0xA65E},
    
    	// From another UpperLower sequence
    	// 0139;LATIN CAPITAL LETTER L WITH ACUTE;Lu;0;L;004C 0301;;;;N;LATIN CAPITAL LETTER L ACUTE;;;013A;
    	{UpperCase, 0x0139, 0x0139},
    	{LowerCase, 0x0139, 0x013A},
    	{TitleCase, 0x0139, 0x0139},
    	// 013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT;Lu;0;L;<compat> 004C 00B7;;;;N;;;;0140;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    // but marks include combining marks, and then we must deal not
    // only with case folding but also normalization: both U+00E9 ('é')
    // and U+0065 U+0301 ('e' followed by combining acute accent)
    // look the same on the page and are treated by some file systems
    // as the same path. If we do allow Unicode marks in paths, there
    // must be some kind of normalization to allow only one canonical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top