Character support
When defining the message body in your request, both the character set and message length impact the number of SMS segments sent. If you use personalization (Liquid Syntax), message length can vary per recipient based on their specific data.
The characters used also influence the encoding format. The API automatically detects the necessary encoding based on the content, ensuring support for SMS delivery in any language.
A single SMS message can contain up to 160 characters, provided all characters used belong to the GSM 7-bit character set.
GSM alphabet and Unicode
The GSM character set consists of both basic and extended characters. The image below displays the basic characters on the left and the extended ones on the right.

Extended Character Set
The following characters are also available, but they're counted as two characters in the SMS message rather than one:
| , ^ , € , { , } , [ , ] , ~ , \
Other Characters
When characters outside the GSM set are needed, such as for non-Latin scripts, messages are encoded using 16-bit Unicode (UCS-2). Each character consumes 2 bytes in this format, limiting a single SMS to a maximum of 70 characters.
Long messages
The message body in a request can include up to 1530 characters. However, SMS messages have encoding limitations:
- GSM 7-bit encoding supports up to 160 characters per message.
- Unicode (UCS-2) encoding, used for non-GSM characters (e.g., emojis or non-Latin scripts), supports up to 70 characters per message.
- Additionally, each message includes a header that consumes part of the character limit.
To support longer texts, the system automatically splits messages into multiple segments. These segments are typically reassembled on the recipient’s device, appearing as continuous messages. Refer to the charts below to estimate how many SMS segments your message will require.
Maximum characters accepted
Messages exceeding 1530 characters will trigger a 422 error and will not be sent.
Using text, unicode or auto encoding
When sending messages, you can decide on the encoding used.
Text
When text is used as encoding, all characters outside the basic and extended character will be evaluated.
Transliteration is applied if the character can be transliterated into another character.
For example: in French, the character ç
will be replaced (transliterated) by Ç
If the character cannot be replaced via transliteration, then the character is replaced by a question mark ?
Unicode
When unicode is used, then all characters are accepted but the length of one SMS is limited to 70 characters.
Auto
When auto is used, we will use text or Unicode automatically, depending on the characters present in the message.
Length of messages
Using only 7-bit Characters
Each SMS in a multi-part 7-bit encoded message has a maximum length of 153 characters.
Length of message | # SMS parts |
---|---|
1–160 | 1 |
161–306 | 2 |
307–459 | 3 |
460–612 | 4 |
613–765 | 5 |
766–918 | 6 |
919–1071 | 7 |
1062–1224 | 8 |
1215–1377 | 9 |
1378–1530 | 10 |
Using Unicode
Each SMS in a multi-part Unicode-encoded message has a maximum length of 67 characters.
Length of message | # SMS parts |
---|---|
1–70 | 1 |
71–134 | 2 |
135–201 | 3 |
202–268 | 4 |
269–335 | 5 |
336–402 | 6 |
403–469 | 7 |
470–536 | 8 |
537–603 | 9 |
604–670 | 10 |
671–737 | 11 |
738–804 | 12 |
805–871 | 13 |
872–938 | 14 |
939–1005 | 15 |
1006–1072 | 16 |
1073–1139 | 17 |
1140–1206 | 18 |
1207–1273 | 19 |
1274-1340 | 20 |
1341 - 1407 | 21 |
1408 - 1474 | 22 |
1475 - 1541 (*) | 23 |
Max length is set to 1530
(*) Please note that sending more than 1530 characters in unicode will produce an error but 1530 characters will result in 23 SMS segments.
Updated 5 days ago