LlIntegerToBase64 - Second Life Wiki

LlIntegerToBase64

From Second Life Wiki

Jump to: navigation, search

Contents

Summary

Function: string llIntegerToBase64( integer number );

Returns a string that is a Base64 big endian encode of number

• integer number

Examples

string ASCII7ToString(integer letter)
{
    if(letter >= 0x80 || letter < 0) return "";//Not valid ascii7 character
    return llBase64ToString(llIntegerToBase64(letter << 24));
}
If you are looking for full Unicode translation, not just ASCII7 see: Combined_Library

Notes

Only the first 6 of the 8 characters returned are needed to decoded it back into an integer.

See Also

Deep Notes

Search JIRA for related Issues

This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.