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
Why My 499-Word Essay Got Rejected: The Hidden Rules of Academic Word Counts
Why "hyphenated-words" sometimes count as one word and sometimes two, the real limits on abstracts and cover letters, and how to hit the exact count without filler.
2026-02-24firstName or first_name? The Naming Convention Guide That Ends the Debate
camelCase, snake_case, PascalCase, kebab-case — every team argues about it at some point. Here's what each format actually means, what the community conventions say per language, and how to convert between them without making everyone angry.
2026-02-07The 500-Year-Old Text Still Running Every Design Mockup — Lorem Ipsum Explained
Why "Lorem ipsum dolor sit amet" keeps appearing in every Figma file, where it actually came from (hint: Cicero), and when real content beats placeholder text.