Data Transfer From Arduino UNO to Teensy2++ Using HC-05 BT Module

I successfully Connected Both the Arduino and Teensy2++.But I am not able toreceive data. In serial monitor I am getting stream of weird symbols.fallowing are two codes which I used:

In arduino i used fallowing code to transmit data:

#include <SoftwareSerial.h>

SoftwareSerial mySerial(10, 11); // RX, TX

void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}

Serial.println("Goodnight moon!");

// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
mySerial.println("Hello, world?");
}

void loop() // run over and over
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}

and in teensy2++ i used fallowing prgm:

#define HWSERIAL Serial1

void setup() {
Serial.begin(9600);
HWSERIAL.begin(9600);
HWSERIAL.println("Hello, world?");
}

void loop() {
if (HWSERIAL.available())
Serial.write(HWSERIAL.read());
if (Serial.available())
HWSERIAL.write(Serial.read());
}