LlIntegerToBase64
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: string llIntegerToBase64( integer number );| 280 | Function ID |
| 0.0 | Forced 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
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

