Word Counter
Count characters, words, sentences, and bytes in real-time. SNS limit guide included.
About This Tool
Word Counter analyzes your text in real time, showing character count (with and without spaces), word count, sentence count, paragraph count, and estimated reading time. It also displays character limits for popular social media platforms — Twitter/X (280), Instagram (2,200), YouTube title (100), and more. Essential for writers, marketers, and content creators managing platform-specific character limits.
0
Characters
0
Characters (no spaces)
0
Words
0
Bytes
0
Sentences
0
Paragraphs
1 min
Reading Time
SNS Character Limits
Keyword Frequency (Top 10)
Enter text to see keyword frequency
How It Works
Character counting operates at the Unicode code point level. The tool uses the spread operator (`[...text]`) to correctly split the string into code points rather than UTF-16 code units, ensuring that emoji, CJK characters, and surrogate pairs are each counted as one character. Word counting splits text by whitespace boundaries using a regex (`/\S+/g`), which handles multiple consecutive spaces, tabs, and newlines.
Sentence counting uses a regex that matches sentence-ending punctuation (., !, ?) followed by whitespace or end of string, with special handling for common abbreviations (Mr., Dr., etc.) to avoid false positives. Paragraph counting splits by two or more consecutive newlines. Reading time is estimated at 200 words per minute for English (the average adult reading speed) and 500 characters per minute for Korean and other CJK languages. The SNS character limits are hard-coded to each platform's current specifications and checked against the total character count in real time.
How to Use
- Type or paste your text in the input area above.
- Character count, word count, sentence count, paragraph count, and byte count update in real-time.
- Check the SNS character limit bars to see if your text fits within Twitter, KakaoTalk, or Instagram limits.
- View the keyword frequency table to see which words appear most often in your text.
- Click Copy to copy your text, or Clear all to reset.
Frequently Asked Questions
What is the difference between characters with and without spaces?▼
How are bytes calculated?▼
How is reading time estimated?▼
What are the character limits for major social media?▼
Can I use this for essays and resumes?▼
Related Tools
Related Articles
How to Count Words in Your Essay Accurately
Learn the best methods for counting words in essays, research papers, and academic writing. Plus tips for meeting word count requirements.
2026-02-24Text Case Conversion: When and Why to Use Different Cases
A practical guide to text case conventions. Learn when to use camelCase, snake_case, PascalCase, and other formats in programming and writing.
2026-02-07What is Lorem Ipsum? History, Uses, and Modern Alternatives
Discover the fascinating history behind Lorem Ipsum, learn when and why designers use placeholder text, and explore modern alternatives for your projects.