| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder/TextDecoder | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since January 2020.
Note: This feature is available in Web Workers.
The TextDecoder() constructor returns a new TextDecoder object.
new TextDecoder()
new TextDecoder(label)
new TextDecoder(label, options)
label OptionalA string identifying the character encoding that this decoder will use. This may be any valid label.
Defaults to "utf-8".
options OptionalAn object with the following properties:
fatal OptionalA boolean value indicating if the TextDecoder.decode() method must throw a TypeError when decoding invalid data.
It defaults to false, which means that the decoder will substitute malformed data with a replacement character.
ignoreBOM OptionalA boolean value indicating whether the byte order mark will be included in the output or skipped over.
It defaults to false, which means that the byte order mark will be skipped over when decoding and will not be included in the decoded text.
RangeErrorThrown 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").
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");
// Throws a RangeError exception.
| Specification |
|---|
| Encoding # ref-for-dom-textdecoder |
TextDecoder interface it belongs to.This page was last modified on Jun 28, 2025 by MDN contributors.
TextDecoderYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |