ข้ามไปยังเนื้อหาหลัก
FreeOnlineTools Go
ไทย
how-to

วิธีนับคำ ตัวอักษรและเวลาอ่านอย่างแม่นยำ

By FreeOnlineTools Team · Updated 2026-08-28

Quick Answer

คำ คือลำดับ non-whitespace อักขระในข้อความอังกฤษ; อักขระ CJK มักนับเป็นคำละคำ อักขระอาจรวมหรือไม่รวม whitespace เวลาอ่าน ≈ คำ / 200 (ผู้ใหญ่เฉลี่ย) หรือ คำ / 250 (เร็ว) ใช้ Word Counter ของเรา

Introduction

การนับคำและอักขระดูเหมือนเล็กน้อย แต่มี edge-case จริง: คำที่มี hyphen, อักขระ CJK (ไม่มีช่องว่าง), contraction, markdown syntax และ HTML tag เครื่องมือต่างกันนับต่างกัน สำคัญเมื่อถึงขีดจำกัด —tweet 280 อักขระ, meta description 160 อักขระ หรือ essay 500 คำ

Step by Step

  1. Define what counts as a word

    In space-delimited scripts (English, French, German), a word is a maximal sequence of non-whitespace characters. 'state-of-the-art' is one word by this definition; some counters split on hyphens and count it as four. Pick a definition and document it. For CJK (Chinese, Japanese, Korean) text with no spaces, each character is typically counted as one word.

  2. Define character counting modes

    Characters-with-spaces includes every character including spaces and newlines. Characters-without-spaces excludes whitespace. For a tweet limit (280), Twitter counts code points (not bytes) and weights CJK and emoji higher —use the platform's own counter for exact limits. For a meta description (160), count characters including spaces.

  3. Estimate reading time

    Average adult reading speed is 200—50 words per minute (wpm). Reading time = words / wpm, rounded up. For 600 words at 200 wpm: 3 minutes. For technical content, use 150—00 wpm; for skimmable marketing copy, 250—00 wpm. Always show the formula so readers can adjust.

  4. Count sentences and paragraphs

    Sentences are typically split on ., !, ? followed by whitespace or end-of-text —but abbreviations (e.g., i.e., Dr.) cause false splits. Paragraphs are separated by one or more blank lines. Use these counts to compute average sentence length (aim for 15—0 words for readable prose) and paragraph density.

  5. Hit platform-specific limits

    Paste your draft into the Word Counter and watch the counts update live. Trim to fit: 280 for a tweet, 160 for a meta description, 500 for a college essay excerpt, 65 for an SEO title. The counter shows all of these at once so you can target the right limit.

Examples

A simple English sentence

Input: The quick brown fox jumps over the lazy dog.

Output: 9 words, 44 characters (with spaces), 35 characters (without spaces), 1 sentence, ~0.05 min reading time

Hyphenated and contracted words

Input: It's a state-of-the-art solution, isn't it?

Output: Counted as 7 words by whitespace split: It's | a | state-of-the-art | solution, | isn't | it? (some counters report 9 by splitting hyphens)

Chinese text (CJK, no spaces)

Input: 你好世界,这是一个测试。

Output: 10 characters; typically counted as 10 'words' for CJK, or 1 word by whitespace split —choose a CJK-aware counter for accurate results

Reading time for a 1200-word article

Input: 1200 words at 200 wpm

Output: 1200 / 200 = 6 minutes (average); 1200 / 250 = 4.8 ≥5 minutes (fast reader)

Common Problems

  • Hyphen and contraction inconsistency: 'state-of-the-art' is 1 word by whitespace, 4 by hyphen split. Document your rule —academic word counts usually split on hyphens, web counters usually do not.
  • CJK miscounting: Chinese/Japanese text has no spaces, so a whitespace-based counter reports the whole paragraph as 1 word. Use a CJK-aware counter that treats each CJK character as a word, or counts them per the target platform's rule.
  • Counting markdown/HTML syntax as words: '# Heading' counts as 2 words if you strip the #, 1 if you do not. Strip markup before counting for accurate prose word counts; keep it for raw character counts.
  • Emoji and astral characters: '😀' is one code point but two UTF-16 code units (a surrogate pair). Count by code points (Array.from(str).length) not by str.length to match how users perceive characters.

Tips

  • For SEO, count the rendered text (after stripping HTML and expanding entities) —search engines index the rendered text, not the source.
  • Aim for an average sentence length of 15—0 words for general prose; above 25 becomes hard to read. The Word Counter shows average sentence length so you can spot run-ons.
  • For reading-time estimates, disclose the wpm you used (e.g. '~3 min read at 200 wpm') so readers know the assumption —technical readers read slower, skimmers faster.
  • Use our Case Converter to normalize text before counting if case differences are causing inconsistent results across tools.

Related Tools

Related Guides

References