BaseN

From Second Life Wiki
Revision as of 15:18, 5 August 2010 by Nexii Malthus (talk | contribs) (Added upgraded list-based version)
Jump to navigation Jump to search

This script allows you to make maximum use of available bits in strings for transport or storage in memory. By being able to code integers into the usable space of UTF-8 and UTF-16.

Note that this script does not code to the same standards such as Base64, but instead maps dynamically to the usable code points as allowed by Linden Lab.

Portable List-based Coding

(( 0x00003f00 &  end) >> 2   ) 



Single Integer Coding

(( 0x00003f00 &  end) >> 2   )