The TextDecoder()
constructor returns a newly created TextDecoder
object for the encoding specified in parameter.
On this page
TextDecoder: TextDecoder() constructor
Syntax
js
new TextDecoder()
new TextDecoder(label)
new TextDecoder(label, options)
Parameters
label
Optional-
A string, defaulting to
"utf-8"
. This may be any valid label. options
Optional-
An object with the property:
-
fatal
-
A boolean value indicating if the
TextDecoder.decode()
method must throw aTypeError
when decoding invalid data. It defaults tofalse
, which means that the decoder will substitute malformed data with a replacement character. -
ignoreBOM
-
A boolean value indicating whether the byte order mark is ignored. It defaults to
false
.
-
Exceptions
-
RangeError
-
Thrown if the value of
label
is unknown, or is one of the values leading to a'replacement'
decoding algorithm ("iso-2022-cn"
or"iso-2022-cn-ext"
).
Examples
js
const textDecoder1 = new TextDecoder("iso-8859-2");
const textDecoder2 = new TextDecoder();
const textDecoder3 = new TextDecoder("csiso2022kr", { fatal: true }); // Allows TypeError exception to be thrown.
const textDecoder4 = new TextDecoder("iso-2022-cn"); // Throw a RangeError exception.
Specifications
Specification |
---|
Encoding Standard # ref-for-dom-textdecoder① |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
TextDecoder |
38 | 79 | 19
18Implemented a slightly different version of the spec. |
No | 25 | 10.1 | 38 | 38 | 19
18Implemented a slightly different version of the spec. |
25 | 10.3 | 3.0 |
See also
- The
TextDecoder
interface it belongs to.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder/TextDecoder