You can use StripANSI Property and set it to true to remove NULL characters and ANSI escape sequences from incoming data.
Here is example:
ssh1.StripANSI =True
you can also try to set TerminalType Property to dumb or tty.
Here is example:
ssh1.TerminalType = "dumb"
or
ssh1.TerminalType = "tty"