Which of these #Unicode symbols do you think *best* represents the concept of "copy"?

That is, if you click it, something will be copied to your clipboard.

(Other suggestions welcome if they are in Unicode.)

Poll ends at .

I've added a "copy" button to all my code samples.

The JS is surprisingly lightweight.

<button class=copy onclick="navigator.clipboard.writeText( this.parentNode.lastChild.textContent );" title="Copy code">⧉</button>

Wonder if there's any other semantics / accessibility stuff I need to consider?

@Edent i love that "navigator" is still the way to refer to the browser. now all we need is to bring back the blink tag