LinkedInFormatterlinkedinformatter.org

LinkedIn formatterCharacter limit guide

LinkedIn character limits — complete guide

A full breakdown of every LinkedIn character limit in 2025 — including the Unicode counting quirk that catches formatters out.

Character limits by field

FieldLimit
Post3,000
Comment1,250
Headline220
About section2,600
Job title100
Company name100
First name / Last name40 each
Connection message300
InMail subject200
InMail body1,900
Article title150
Article body125,000

The Unicode character counting quirk

If you use a LinkedIn text formatter to add bold or italic text, your post will hit LinkedIn's character limit sooner than you expect. Here's why.

Bold and italic Unicode characters (like 𝗯𝗼𝗹𝗱) live in the supplementary Unicode plane above U+FFFF. They are encoded in UTF-16 as surrogate pairs — two 16-bit code units per character. LinkedIn's character counter uses string.length (UTF-16 code units), so each bold or italic character counts as 2.

// Plain text

"hello".length // → 5

// Bold Unicode text

"𝗵𝗲𝗹𝗹𝗼".length // → 10 (not 5!)

Our LinkedIn text formatter mirrors this behaviour exactly, so the character count you see here will match what LinkedIn shows. Most other tools use [...str].length (code points), which undercounts formatted text and causes unexpected “post too long” errors on LinkedIn.

The "see more" fold

LinkedIn post text is truncated at approximately 210 characters and a “see more” link is shown. Only the first 210 characters are visible without interaction — this is your hook. Use it wisely. Our formatter's live preview shows you exactly where the fold falls.

Free tool

Check your character count

Our LinkedIn formatter counts characters exactly as LinkedIn does — including Unicode formatting.

Open formatter

Also see: How to bold text on LinkedIn · LinkedIn formatting tips