aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/javascript/reference/global_objects/unescape/index.html
blob: e3b3d2a9d116e4a71233850c1260d741ede6a1bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
---
title: unescape()
slug: Web/JavaScript/Reference/Global_Objects/unescape
translation_of: Web/JavaScript/Reference/Global_Objects/unescape
---
<div>{{jsSidebar("Objects")}}</div>

<div>{{Deprecated_header}}</div>

<div>A função <strong>unescape()</strong> obsolta computa uma nova string na qual as sequencias hexadecimal são esquecidas com o caractere que representa. As sequências de escape podem ser introduzidas como funções {{jsxref("escape")}}. Porque a função 'unescape' está obsoleta, ao invez disso, use {{jsxref("decodeURI")}} ou {{jsxref("decodeURIComponent")}}.</div>

<div> </div>

<div class="note"><strong>Nota:</strong> Não use <code>unescape</code> para decodificar URIs, use <code>decodeURI</code> ao invez disso.</div>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox"><code>unescape(str)</code></pre>

<h3 id="Parâmetros">Parâmetros</h3>

<dl>
 <dt><code>str</code></dt>
 <dd>Uma string a ser decodificada.</dd>
</dl>

<h3 id="Valor_retornado">Valor retornado</h3>

<p>Uma nova string na qual alguns caracteres tem que ser 'unescaped'.</p>

<h2 id="Descrição">Descrição</h2>

<p>A função <code>unescape</code> é uma propriedade do objeto global.</p>

<h2 id="Exemplos">Exemplos</h2>

<pre class="brush: js">unescape('abc123');     // "abc123"
unescape('%E4%F6%FC');  // "äöü"
unescape('%u0107');     // "ć"
</pre>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('ES1', '#sec-15.1.2.5', 'unescape')}}</td>
   <td>{{Spec2('ES1')}}</td>
   <td>Definição Inicial.</td>
  </tr>
  <tr>
   <td>{{SpecName('ES5.1', '#sec-B.2.2', 'unescape')}}</td>
   <td>{{Spec2('ES5.1')}}</td>
   <td>Definido na compatibilidade Annex B</td>
  </tr>
  <tr>
   <td>{{SpecName('ES6', '#sec-unescape-string', 'unescape')}}</td>
   <td>{{Spec2('ES6')}}</td>
   <td>Difinito na (normativa) Annex B Para novidades adicionais do ECMAScript para browsers</td>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-unescape-string', 'unescape')}}</td>
   <td>{{Spec2('ESDraft')}}</td>
   <td>Difinito na (normativa) Annex B Para novidades adicionais do ECMAScript para browsers</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidades_dos_browsers">Compatibilidades dos browsers</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Novidades</th>
   <th>Chrome</th>
   <th>Edge</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Novidades</th>
   <th>Android</th>
   <th>Chrome for Android</th>
   <th>Edge</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Suporte básico</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Veja_também">Veja também</h2>

<ul>
 <li>{{jsxref("decodeURI")}}</li>
 <li>{{jsxref("decodeURIComponent")}}</li>
 <li>{{jsxref("escape")}}</li>
</ul>