binDecode

Convert binary unicode (16 digits) string to string chars

Install

Install all functions of strman

yarn add strman

or just the binDecode function

yarn add strman.bindecode

Usage

import { binDecode } from 'strman'
// OR
import binDecode from 'strman.bindecode'
Parameters:
Name Type Description
value String

Value to decode

Source:
Returns:

String decoded.

Type
String
Example
const binary = '00000000011100110000000001110100000000000111001000000000011011010000000001100001'
binDecode(binary)
// => 'strman'