JavaScript Program to Convert String to Bytes
Last Updated :
14 Jun, 2024
In this article, we are going to learn ho to Convert String to bytes in JavaScript. Converting a string to bytes in JavaScript involves encoding the characters using a specific character encoding (such as UTF-8) to represent the string as a sequence of bytes.
There are several methods that can be used to Convert String to bytes in JavaScript, which are listed below:
We will explore all the above methods along with their basic implementation with the help of examples.
Approach 1: Using for Loop
In this approach, we are using for loop to iterate our given string characters and then converting each character to its Unicode points by using the charAt() method.
Syntax:
for (statement 1 ; statement 2 ; statement 3){
code here...
};
Example: In this example, the stringToBytes function iterates through the characters of a given string using a for loop, converting each character to its Unicode code point by using charCodeAt(). and storing them in an array.
JavaScript
function stringToBytes(val) {
const result = [];
for (let i = 0; i < val.length; i++) {
result.push(val.charCodeAt(i));
}
return result;
}
const str1 = "Geeks";
const result = stringToBytes(str1);
console.log(result);
Output[ 71, 101, 101, 107, 115 ]
Approach 2: Using Array.from() Method
Using Array.from() to create an array from an iterable (like a string), with the provided mapping function converting each character to its Unicode code point.
Syntax:
Array.from(object, mapFunction, thisValue)
Example: In this example, we are using above-explained approach.
JavaScript
let str1 = "Geeks";
let result = Array.from(str1, char => char.charCodeAt(0));
console.log(result);
Output[ 71, 101, 101, 107, 115 ]
In this approach,The TextEncoder API in JavaScript encodes a string into bytes, providing a byte representation using UTF-8 encoding,
Syntax:
let str = encoder.encode( str );
Example: In this example we are using the above explained method.
JavaScript
const str1 = "Geeks";
const encoder = new TextEncoder();
const result = encoder.encode(str1);
console.log(result);
OutputUint8Array(5) [ 71, 101, 101, 107, 115 ]
Approach 4: Using Buffer (Node.js Only)
The Buffer class in Node.js can be used to convert a string into bytes by specifying the encoding type. This approach is particularly useful for server-side JavaScript running in a Node.js environment.
Example: In this example, we use the Buffer.from() method to convert a string into bytes using UTF-8 encoding. The Buffer object provides a toJSON() method to convert the buffer into an array of bytes, which can then be logged to the console.
JavaScript
const str1 = "Geeks";
const buffer = Buffer.from(str1, 'utf-8');
const result = Array.from(buffer);
console.log(result);
Output:
[ 71, 101, 101, 107, 115 ]
Similar Reads
JavaScript Program to Convert Byte Array to JSON
In this article, we are going to learn about the conversion of a Byte Array into JSON. Converting a byte array to JSON means transforming a sequence of bytes into a structured JSON format, often involving decoding bytes to a text string and then parsing it into JSON data.Example:Input : [71, 101, 10
3 min read
JavaScript Program to Convert Decimal to Binary
In this article, we are going to learn the conversion of numeric values from decimal to binary. Binary is a number system with 2 digits (0 and 1) representing all numeric values. Given a number N which is in decimal representation. our task is to convert the decimal representation of the number to i
5 min read
JavaScript - Convert Byte Array to String
Here are the various methods to convert Byte Array to string in JavaScript.1. Using WebAPI TextDecoder.decode() MethodThe TextDecoder API is a modern and efficient way to convert a byte array (Uint8Array) to a string. Itâs supported in both browsers and Node.js.JavaScriptconst byteA = new Uint8Array
2 min read
How to Convert Byte Array to String in PHP?
Given a Byte Array, the task is to convert the byte array to a String in PHP. It is used in various scenarios, such as processing binary data, handling file uploads, or working with data transmission protocols. Below are the approaches to convert byte array to string in PHP:Table of ContentWhat is a
3 min read
Convert base64 String to ArrayBuffer In JavaScript
A Base64 string represents binary data in an ASCII string format by translating it into a radix-64 representation. Often used to encode binary data in text-based formats like JSON or HTML, it needs to be converted back into its original binary format for further processing. An ArrayBuffer in JavaScr
2 min read
How to Get the Length of a String in Bytes in JavaScript ?
In JavaScript, determining the length of a string in characters is straightforward using the length property. However, in many cases, particularly when dealing with file sizes, network protocols, or database storage, you might need to know the length of a string in bytes. This is because characters
3 min read
How to Convert File Content to Byte Array in PHP ?
Converting file content to a byte array in PHP is a useful technique for various applications, including file manipulation, data processing, and when working with binary files like images or PDFs. PHP offers multiple ways to read file content and convert it into a byte array, providing flexibility t
5 min read
PHP mb_convert_kana() Function
The mb_convert_kana() is an inbuilt function in PHP that is used to convert text into full-width and half-width. Syntax:mb_convert_kana($string, $mode, $encoding) : stringParameters: This function accepts three parameters that are described below. $string: This is the string that we want to convert
2 min read
p5.js byte() function
The byte() function in p5.js is used to convert the given string of number, number value or boolean into its byte representation. This byte number can only be whole number in between -128 to 127. The value outside of the range is converted into its corresponding byte representation.Syntax:Â Â byte(Va
3 min read
Convert a String to a ByteBuffer in Java
In Java, ByteBuffer can be used to perform operations at the Byte level one more thing is this class provides different types of methods for reading writing, and manipulating bytes in a structured way only. In this article, we will learn about String to ByteBuffer in Java. Java Program to Convert St
4 min read