Project

General

Profile

Bin2txt » History » Version 6

Per Amundsen, 02/16/2023 03:29 PM

1 1 Per Amundsen
_Added in 1.8.10_
2
3 2 Per Amundsen
*/bin2txt <binary text>*
4 1 Per Amundsen
5 4 Per Amundsen
Converts a binary string to "ASCII":http://www.asciitable.com/.
6 1 Per Amundsen
7 6 Per Amundsen
_See also [[/txt2bin]]._
8
9 1 Per Amundsen
*Parameters*
10
11 5 Per Amundsen
table(ktable).
12
|*Parameter*|*Description*|
13
| <binary text> | Binary text to convert. |
14 1 Per Amundsen
15
*Example*
16
17
<pre>
18 3 Per Amundsen
;Will show 0100100001100101011011000110110001101111001000000101011101101111011100100110110001100100.
19
/txt2bin Hello World
20
21
;Convert back to Hello world.
22 1 Per Amundsen
/bin2txt 0100100001100101011011000110110001101111001000000101011101101111011100100110110001100100
23
</pre>