Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 65 (0.21 sec)

  1. doc/go_spec.html

    representation of the Unicode code point with the given integer value.
    Values outside the range of valid Unicode code points are converted to <code>"\uFFFD"</code>.
    
    <pre>
    string('a')          // "a"
    string(65)           // "A"
    string('\xf8')       // "\u00f8" == "ø" == "\xc3\xb8"
    string(-1)           // "\ufffd" == "\xef\xbf\xbd"
    
    type myString string
    myString('\u65e5')   // "\u65e5" == "日" == "\xe6\x97\xa5"
    </pre>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top