> For the complete documentation index, see [llms.txt](https://doc.sysdevmobile.com/kalipso5/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.sysdevmobile.com/kalipso5/developing/form/expressions/functions/functions-descriptions/string-functions/urlencode.md).

# URLEncode

Kalipso - Form - Expressions - Functions - Functions Descriptions - String Functions - URLEncode

This Function encodes a specified string into a URL encoded string.

### Parameters

* **Value** *\<string> -* The string to encode.

{% hint style="info" %}
The result can be slightly different in different platforms, but it will always represent a valid URL Encoded String. For example in Windows a space will normally be encoded into %20 and in Android into +. Both %20 and + are valid encodings for the space character.
{% endhint %}

### Examples

* *Example 1*

URLEncode("SYSDEV\&Kalipso Designer")\
**Result** = SYSDEV%26Kalipso%20Designer
