decodeURIComponent()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

decodeURIComponent() 함수는 encodeURIComponent 나 비슷한 방법으로 생성된 Uniform Resource Identifier(URI) 컴포넌트를 해독합니다.

시도해보기

function containsEncodedComponents(x) {
  // ie ?,=,&,/ etc
  return decodeURI(x) !== decodeURIComponent(x);
}

console.log(containsEncodedComponents("%3Fx%3Dtest")); // ?x=test
// Expected output: true

console.log(containsEncodedComponents("%D1%88%D0%B5%D0%BB%D0%BB%D1%8B")); // шеллы
// Expected output: false

구문

js
decodeURIComponent(encodedURI);

매개변수

encodedURI

암호화된 Uniform Resource Identifier(URI) 컴포넌트.

반환 값

이스케이프되지 않은 특정 글자들 중 새로운 문자열.

예외

잘못 사용되었을 경우 URIError ( " malformed URI sequence ") 예외를 발생시킵니다.

설명

암호화된 URI 컴포넌트에서 각각의 이스케이프 시퀀스(확장 문자열)를 자신을 나타내는 문자로 바꿉니다.

예제

키릴문자 URL 컴포넌트의 복호화

js
decodeURIComponent("JavaScript_%D1%88%D0%B5%D0%BB%D0%BB%D1%8B");
// "JavaScript_шеллы"

명세

Specification
ECMAScript® 2025 Language Specification
# sec-decodeuricomponent-encodeduricomponent

브라우저 호환성

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
decodeURIComponent

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

같이 보기