interface TextEncoder
extends TextEncoderCommon
Methods #
#encodeInto(input: string,dest: Uint8Array,): TextEncoderEncodeIntoResult
Allows you to convert a string into binary data (in the form of a Uint8Array) given the encoding.
Examples #
#
Example 1
Example 1
const encoder = new TextEncoder();
const str = "Hello";
const encodedData = encoder.encode(str);
console.log(encodedData); // Outputs: Uint8Array(5) [72, 101, 108, 108, 111]
Methods #
Turns a string into binary data (in the form of a Uint8Array) using UTF-8 encoding.
#encodeInto(input: string,dest: Uint8Array,): TextEncoderEncodeIntoResult
Encodes a string into the destination Uint8Array and returns the result of the encoding.
variable TextEncoder
Properties #
readonly
#prototype: TextEncoder