Does createWithCharMap support space?

Hi, does Label::createWithCharMap support space?
I mapped my font images according to this series of characters

const char* FontFreeType::glyphASCII = “”!#$%&’()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^`abcdefghijklmnopqrstuvwxyz{|}~¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþ “;
that I saw when searching for 0123456789 on CCFontFreeType.cpp
And calls the method like this:
Label *tLabel = Label::createWithCharMap(“res/pxlFont.png”, 4, 5, '”’);
It looks ok for the letters, numbers and some special characters, but strange enough does not show up space. So a call for “This is a test” would appear “Thisisatest”
I might be using the method wrong so apologies for that