이를 위해 toString('utf8')의 개념을 사용합니다. 다음은 코드입니다 -
아래 코드에 버퍼에 대한 자세한 설명이 있습니다.
예시
var actualBufferObject = Buffer.from('[John Smith]', 'utf8') console.log("The actual buffer object="); console.log(JSON.stringify(actualBufferObject)) console.log("Get back the original object="); console.log(actualBufferObject.toString('utf8')); var myObjectValue = '[John Smith]'; console.log("The data you are getting from the buffer is equal to ASCII code equivalent...") for (var counter = 0; counter < myObjectValue.length; counter++) { console.log("The ascii value of " + myObjectValue[counter] + " is =" + (myObjectValue.charCodeAt(counter))); }
위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -
node fileName.js.
여기에서 내 파일 이름은 demo197.js입니다.
출력
이것은 다음과 같은 출력을 생성합니다 -
PS C:\Users\Amit\javascript-code> node demo197.js The actual buffer object= {"type":"Buffer","data":[91,74,111,104,110,32,83,109,105,116,104,93]} Get back the original object= [John Smith] The data you are getting from the buffer is equal to ASCII code equivalent... The ascii value of [ is =91 The ascii value of J is =74 The ascii value of o is =111 The ascii value of h is =104 The ascii value of n is =110 The ascii value of is =32 The ascii value of S is =83 The ascii value of m is =109 The ascii value of i is =105 The ascii value of t is =116 The ascii value of h is =104 The ascii value of ] is =93