How to feed a sequence with different lengths into the RNN model as batches?

For example, I have some dataset which is full of different names. I use one-hot vector for them.

Then, “Bob” would be a (26, 4) tensor, “Mike” would be a (26, 4) tensor, etc.

So, what should I do to concatenating these tensors to make them batches?