JavaScript escape() Function
Definition and Usage
The escape() function was deprecated in JavaScript version 1.5. Use encodeURI() or encodeURIComponent() instead.
The escape() function encodes a string.
This function makes a string portable, so it can be transmitted across any network to any computer that supports ASCII characters.
This function encodes special characters, with the exception of: * @ - _ + . /
Browser Support
| Function | |||||
|---|---|---|---|---|---|
| escape() | Yes | Yes | Yes | Yes | Yes |
Syntax
escape(string)
Parameter Values
| Parameter | Description |
|---|---|
| string | Required. The string to be encoded |
Technical Details
| Return Value: | A String, representing the encoded string |
|---|
❮ JavaScript Global Functions

