ctrl-v may be bound to "paste" by Windows Terminal, if you don't want to change configurations, you can simulate key presses by vim commands, such as the following:
:execute "normal \<c-v>"
Note that \
means Ctrl-V
, and it is literally thease chars, no need to press ctrl key.
https://stackoverflow.com/a/78584291/2204107