Send MIDI NOTE_ON with velocity=0

Hello!
Can i send MIDI note ON with velocity=0, instead of NOTE_OFF?

Thank you

Only manually with a raw midi message as sysex:

send('midi:midi_target', '/sysex', '90 7F 00') // ch 1, note 127, value 0

(MIDI Specification: Note-On)

Man, you are fantastic, thank you