How can I copy binary data in Windows (preferably with Notepad++)?
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Fantascape Looping
--
Chapters
00:00 How Can I Copy Binary Data In Windows (Preferably With Notepad++)?
00:23 Accepted Answer Score 21
00:43 Answer 2 Score 2
01:38 Thank you
--
Full question
https://superuser.com/questions/349345/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows #notepad++ #clipboard
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Fantascape Looping
--
Chapters
00:00 How Can I Copy Binary Data In Windows (Preferably With Notepad++)?
00:23 Accepted Answer Score 21
00:43 Answer 2 Score 2
01:38 Thank you
--
Full question
https://superuser.com/questions/349345/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#windows #notepad++ #clipboard
#avk47
ACCEPTED ANSWER
Score 21
In the Edit
menu of Notepad++ (I'm using v5.9.2) under Paste Special
there are actions to Copy, Cut, and Paste Binary Content.
ANSWER 2
Score 2
The Notepad++ MIME Tools plugin and Base64 Encode/Decode feature can be used to copy small binary files (typically small jar or zip files) between remote systems using the clipboard.
- Open the Binary file binary1.bin in Notepad++
- Edit -> Select All (Ctrl+A)
- Plugins -> MIME Tools -> Base64 Encode
- Edit -> Select All (Ctrl+A)
- Edit -> Copy (Ctrl+C)
- Edit -> Undo (Ctrl+Z)
- Move focus to a new Notepad++ tab
- Edit -> Paste (Ctrl+v)
- Edit -> Select All (Ctrl+A)
- Plugins -> MIME Tools -> Base64 Decode
- File -> Save As... binary2.bin