Dice Roll
Dice roll tool. You can roll multiple dice at once, up to 100 dice at a time. You can also roll different types of dice at the same time.
How to use
About this tool
Simulates rolling dice with any number of sides. Random numbers are generated in the browser.
How to use
Choose dice type (d6, d20, etc.), count and rolls; click to roll and view history.
Options
Per entry: "Sides" (e.g. 6 for d6, 20 for d20) and "Count". NdM means N dice with M sides each. "Add dice" adds rows to roll multiple types at once. Up to 100 dice total.
Use cases
• Tabletop RPGs • Random draws • Game prototypes • Education
Privacy and data
Random generation is in-browser; nothing is sent to a server.
FAQ
- Q: What is an HTML entity?
- A: HTML entities are special character sequences used to represent characters that have special meaning in HTML or that are difficult to type. For example, < is written as <, & as &, and © as ©.
- Q: When should I encode HTML entities?
- A: Always encode user-supplied content before inserting it into HTML to prevent XSS (Cross-Site Scripting) attacks. Also encode when embedding special characters in HTML attributes or text nodes.
- Q: What is the difference between named and numeric entities?
- A: Named entities use human-readable names (e.g. &copy; for ©). Numeric entities use decimal (e.g. ©) or hexadecimal (e.g. ©) code points. Both represent the same character; named entities are easier to read.
- Q: Does decoding also handle numeric entities like ©?
- A: Yes. The tool decodes both named entities (©) and numeric entities (© and ©) in Decode mode.
- Q: Does this tool send my data to a server?
- A: No. All encoding and decoding is performed in the browser. Your data is never sent to any server.
