aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/unescape/index.html
blob: 1b19115fc9d563860f343b760f8df83e0667f8a5 (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
---
title: unescape()
slug: Web/JavaScript/Reference/Global_Objects/unescape
tags:
  - Deprecated
  - JavaScript
  - Method
translation_of: Web/JavaScript/Reference/Global_Objects/unescape
---
<p>{{jsSidebar("Objects")}}</p>

<div class="warning">警告: <code>unescape()</code> は厳密には (「ウェブ標準から削除された」という意味では) 非推奨になっていませんが、 ECMA-262 標準の <a href="https://www.ecma-international.org/ecma-262/9.0/index.html#sec-additional-ecmascript-features-for-web-browsers">Annex B</a> において定義されており、導入部で次のように位置付けられています。

<blockquote>… この附属書で規定されているすべての言語機能および動作は、1つ以上の望ましくない特性を有しており、古い使用例がない場合には,この仕様から削除される。 …<br>
… プログラマーは、新しい ECMAScript コードを書く際に、これらの機能や動作の存在を利用したり、仮定したりしてはいけない。 …</blockquote>
</div>

<p><code><strong>unescape()</strong></code> 関数は 16 進数エスケープシーケンスを、それが表す文字列に置換します。エスケープシーケンスは {{jsxref("escape")}} などの関数によって生成されます。通常は {{jsxref("decodeURI")}} または {{jsxref("decodeURIComponent")}}<code>unescape</code> よりも推奨されます。</p>

<div class="note"><strong>注 :</strong> URI のデコードに <code>unescape</code> を使用しないでください。代わりに <code>decodeURI</code> を使用してください。</div>

<h2 id="Syntax" name="Syntax">構文</h2>

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

<h3 id="Parameters" name="Parameters">引数</h3>

<dl>
 <dt><code><var>str</var></code></dt>
 <dd>デコードされる文字列。</dd>
</dl>

<h3 id="Return_value" name="Return_value">返値</h3>

<p>特定の文字のエスケープが解除された新しい文字列です。</p>

<h2 id="Description" name="Description">解説</h2>

<p><code>unescape</code> 関数は<em>グローバルオブジェクト</em>のプロパティです。</p>

<h2 id="Examples" name="Examples"></h2>

<h3 id="Using_unescape" name="Using_unescape">unescape の使用</h3>

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

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-unescape-string', 'unescape')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("javascript.builtins.unescape")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

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