00000000 or 0Sxxxxxx or 1Sxxxxxx 0xxxxxxx or 1Sxxxxxx 1xxxxxxx 0xxxxxxx or 1Sxxxxxx 1xxxxxxx 1xxxxxxx 0xxxxxxx or 1Sxxxxxx 1xxxxxxx 1xxxxxxx 1xxxxxxx (first 27 bits) 1xxxxxxx 0xxxxxxx (number of succeeding bytes) xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx (succeeding bytes) xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx (succeeding bytes) ... xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx (succeeding bytes) xxxxxxxx xxxxxxxx (succeeding bytes)
i1 : binary = s -> concatenate between (" ", |
i2 : << binary ascii gg 63 << endl; |
i3 : << binary ascii gg 64 << endl; |
i4 : << binary ascii gg 127 << endl; |
i5 : << binary ascii gg 128 << endl; |
i6 : << binary ascii gg 2^10 << endl; |
i7 : << binary ascii gg 2^20 << endl; |
i8 : << binary ascii gg (-2^20) << endl; |
i9 : << binary ascii gg 2^30 << endl; |
i10 : << binary ascii gg 2^40 << endl; |
i11 : << binary ascii gg 2^50 << endl; |