LlIntegerToBase64
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
Function: string llIntegerToBase64( integer number );| 280 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
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

