Esta página foi traduzida do inglês pela comunidade.Saiba mais e junte-se à comunidade MDN Web Docs.
unescape()
Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see thecompatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
escape. Porque a função 'unescape' está obsoleta, ao invez disso, usedecodeURI oudecodeURIComponent.Nota:Não useunescape para decodificar URIs, usedecodeURI ao invez disso.
In this article
Syntax
unescape(str)
Parâmetros
strUma string a ser decodificada.
Valor retornado
Uma nova string na qual alguns caracteres tem que ser 'unescaped'.
Descrição
A funçãounescape é uma propriedade do objeto global.
Exemplos
unescape("abc123"); // "abc123"unescape("%E4%F6%FC"); // "äöü"unescape("%u0107"); // "ć"Especificações
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-unescape-string> |