Character Counter
Count characters in your text
Count characters with and without spaces. Perfect for social media posts, SMS messages, and any content with character limits like Twitter/X (280), Instagram (2200), or LinkedIn (3000).
How it works
The result is derived through the following steps:
text = inputs.text || ''characters = text.lengthcharactersNoSpaces = text.replace(/\s/g, '').lengthwords = text.trim() ? text.trim().split(/\s+/).length : 0twitterRemaining = 280 - characterssmsMessages = ceil(characters / 160) || 1
Frequently Asked Questions
What is the Twitter character limit?
Twitter/X allows 280 characters per tweet for most users.
How long is one SMS?
A standard SMS is 160 characters. Longer messages are split into multiple SMS.