diff options
| author | 3indblown Leaf <69508345+kraccoon-dev@users.noreply.github.com> | 2022-02-16 17:11:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-16 17:11:01 +0900 |
| commit | c5e82bf41f336a59704ee8c429e3147f73fa8a48 (patch) | |
| tree | 1329fd03f09c80a3fd39dfcf95bb480866252c8f /files/ko/web/javascript/reference/global_objects/encodeuricomponent | |
| parent | 2968f00d257b512ac0d046a3fa12e8deec2540fb (diff) | |
| download | translated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.tar.gz translated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.tar.bz2 translated-content-c5e82bf41f336a59704ee8c429e3147f73fa8a48.zip | |
remove all span tags 1 (#3920)
Co-authored-by: Kyle <mkitigy@gmail.com>
Diffstat (limited to 'files/ko/web/javascript/reference/global_objects/encodeuricomponent')
| -rw-r--r-- | files/ko/web/javascript/reference/global_objects/encodeuricomponent/index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/encodeuricomponent/index.html b/files/ko/web/javascript/reference/global_objects/encodeuricomponent/index.html index 3208e449d3..287c7f1f42 100644 --- a/files/ko/web/javascript/reference/global_objects/encodeuricomponent/index.html +++ b/files/ko/web/javascript/reference/global_objects/encodeuricomponent/index.html @@ -9,7 +9,8 @@ translation_of: Web/JavaScript/Reference/Global_Objects/encodeURIComponent --- <div>{{jsSidebar("Objects")}}</div> -<p><span ><code><strong>encodeURIComponent()</strong></code> 함수는 {{glossary("URI")}}의 특정한 문자를 UTF-8로 인코딩해 하나, 둘, 셋, 혹은 네 개의 연속된 이스케이프 문자로 나타냅니다.</span> (두 개의 대리 문자로 이루어진 문자만 이스케이프 문자 네 개로 변환됩니다.)</p> +<p><code><strong>encodeURIComponent()</strong></code> 함수는 {{glossary("URI")}}의 특정한 문자를 UTF-8로 인코딩해 하나, 둘, 셋, 혹은 네 개의 연속된 이스케이프 문자로 나타냅니다. (두 개의 대리 문자로 이루어진 문자만 이스케이프 문자 네 개로 변환됩니다.)</p> + <div>{{EmbedInteractiveExample("pages/js/globalprops-encodeuricomponent.html")}}</div> @@ -58,7 +59,7 @@ console.log(encodeURIComponent(set3)); // %23 console.log(encodeURIComponent(set4)); // ABC%20abc%20123 (the space gets encoded as %20) </pre> -<p><span lang="ko"><span>상위-하위 쌍을 이루지 않은 단일 대리 문자를 인코딩 시도하면 {{jsxref("URIError")}}가 발생합니다.</span></span></p> +<p>상위-하위 쌍을 이루지 않은 단일 대리 문자를 인코딩 시도하면 {{jsxref("URIError")}}가 발생합니다.</p> <pre class="brush: js">// high-low pair ok console.log(encodeURIComponent('\uD800\uDFFF')); |
