Skip to navigation
Convert hex to string or string to hex with the native nodejs buffer
07.01.18
example: #node > var a = Buffer('hello', 'utf-8'); undefined > a
> a.toString('hex') '68656c6c6f' > b = Buffer('68656c6c6f','hex');
> b
> b.toString('hex') '68656c6c6f' > b.toString('utf-8') 'hello'
https://nodejs.org/api/buffer.html
Reply
Anonymous
Information Epoch 1732679034
Development is an iterative process.
Home
Notebook
Contact us