Step 1. Splitting your text into tokens
A model can't read letters or words. It reads tokens, which are fragments of text from a fixed list the model was built with. Common words are a single token, and rarer words get split into several pieces. Every token has an identity number, and those numbers are what actually goes into the model.
Type in the box and watch your sentence get split up. Each chip is one token, and the small number on it is that token's real id.
This runs against a real slice of the Qwen3 vocabulary, 30,747 of its 248,320 tokens, so the ids you see are genuine. For example " world" is one token, id 1814. Two limits worth stating: it's only a slice, so a word missing from it gets split into smaller pieces than the real model would use, and it matches the longest fragment first rather than following the model's exact merge order.