Windows – ny way to copy null bytes (ASCII 0x00) to the clipboard on Windows

clipboardcopy/pastewindows

Null bytes (ASCII 0x00) don't appear to be copyable (Ctrl+C-able) on Windows. For a demonstration of this, open up your browser's dev console and do console.log('a\x00b'). If you try and copy-paste the resulting string on a Windows 8 machine (and probably other versions of Windows too), you'll find that only the a gets copied. The \x00 and everything after it is ignored.

Is there any way to copy the entirety of a string that contains null bytes? Can the clipboard even hold null bytes?

(Auxiliary question: why can't null bytes be copied? E.g. is there a security-related reason for this, or is it just Windows being silly?)

Best Answer

No, you cannot put text with embedded null characters on the clipboard. Let's look at the list of standard Windows clipboard formats. There are a few formats that hold things generally understood as text:

  • CF_TEXT (1)
  • CF_OEMTEXT (7)
  • CF_UNICODETEXT (13)

Every single one of those has this sentence in its definition:

A null character signals the end of the data.

Now, CF_UNICODETEXT keeps its data as UTF-16LE, so it will more than likely have some null bytes, but null characters (two null bytes in a row, basically) will still end the string.

We can only speculate about why null characters aren't allowed in clipboard text, but more than likely it's just because the most commonly-used string processing functions in Windows assume a null character signals the end. The only other way to know where a string stops would be to prefix it with its length.

You can hold graphics on the clipboard even though they likely have null bytes because they get passed around in different clipboard formats (e.g. CF_BITMAP), which have to be understood differently by programs.

Related Question