There is no correct stright-forward approach with any type of "Unicode string".
Even Python "Unicode" UTF-16 string has variable length characters so, you can't just cut with ustring[:5]. Because some Unicode Code points may use more then one "character" i.e. Surrogate pairs.
So if you want to cut 5 code points (note these are not characters) so you may analaze the text, see http://en.wikipedia.org/wiki/UTF-8 and http://en.wikipedia.org/wiki/UTF-16 definitions. So you need to use some bitmaks to figure out boundaries.
Also you still do not get characters. Becasue for example. Word "שָלוֹם" -- pease in hebrew "Shalom" consists of 4 characters and 6 code points letter "shin", vovel "a" letter "lamed", letter "vav" and vovel "o" and letter "mem".
So character is not code point.
Same for most western languages where a letter with diactrics may be represented as two code points. Search for example for "unicode normalization".
So... If you really need 5 first characters you have to use tools like ICU library. For example there is ICU libary for Python that provides characters boundary iterator.