TextPreflightGuide + tool
Prevent SMS Unicode cost

Find the invisible invoice.

Copy from a document, CRM or AI tool can introduce characters that look harmless but change the encoding and segment count of an entire campaign.

Unicode cost checker

Preview conservative typography fixes and compare the message before and after.

LIVE
Safe punctuation changes only. Your message is not stored.

The usual suspects

Character typeExampleRisk
Smart punctuation“ ” ‘ ’ — …May trigger Unicode encoding
Invisible spacingNBSP, zero-width marksHard to spot in review
Emoji✅ 🚚 🎉Uses Unicode; some use multiple units
PersonalizationNames, cities, coupon textEncoding changes after rendering
GSM extension{ } [ ] ^ €Each consumes two septets

A safe pre-send workflow

  1. Render every message with realistic or worst-case template variables.
  2. Analyze the rendered text and selected sender profile.
  3. Flag an unexpected move from GSM-7 to UCS-2.
  4. Preview conservative replacements for typography-only characters.
  5. Recalculate segments and campaign cost before approval.

Automate the check

const result = await client.optimize({
  text,
  recipients: 10000,
  unitPrice: 0.0075,
  currency: "USD"
});

The optimization response includes the original analysis, optimized analysis, every proposed replacement and the possible savings. It does not paraphrase marketing copy or remove meaningful language.

Keep human intent in the loop.

Emoji, names and non-Latin languages can be deliberate. Treat an encoding change as a cost signal, then choose whether preserving the content is worth the additional segments.

Add a preflight gate.

Move the same Unicode and cost check into your application before messages reach a delivery provider.

Technical references