HTML Symbol Entities Cheatsheet - Online Search & Copy
Search and copy HTML entities for arrows, math, currency, and symbols. See the glyph and code. Fast reference.
UD5 Toolkit
| Match # | Full Match | Group 1 | Group 2 | Group 3 | ... |
|---|
^ | Start of string/line |
$ | End of string/line |
\b | Word boundary |
\B | Non-word boundary |
\d | Digit [0-9] |
\D | Non-digit |
\w | Word character [A-Za-z0-9_] |
\W | Non-word character |
\s | Whitespace (space, tab, newline) |
\S | Non-whitespace |
. | Any character except newline |
* | 0 or more times |
+ | 1 or more times |
? | 0 or 1 time |
{n} | Exactly n times |
{n,} | At least n times |
{n,m} | Between n and m times |
*? +? ?? | Lazy versions |
(x) | Capturing group |
(?:x) | Non-capturing group |
x(?=y) | Positive lookahead |
x(?!y) | Negative lookahead |
(?<=y)x | Positive lookbehind (ES2018) |
(? | Negative lookbehind (ES2018) |
(?<name>x) | Named capturing group (ES2018) |
g | Global search |
i | Case-insensitive |
m | Multi-line mode (^ and $ match line boundaries) |
u | Unicode mode |
s | Dotall mode ('.' matches newline) |
y | Sticky mode (matches from lastIndex) |
regex.test(str) | Returns true/false |
regex.exec(str) | Returns match details |
str.match(regex) | Returns matches (or first match without g) |
str.matchAll(regex) | Iterator of all matches (needs g flag) |
str.replace(regex, newSubstr|fn) | Replace matches |
str.search(regex) | Returns index of first match |
str.split(regex) | Split string by regex |
Click a pattern to use it in the tester.
match() is a string method; without the g flag it returns the first full match and groups, with g it returns an array of all full matches (no groups). exec() is a regex method that returns one match at a time with groups and updates lastIndex (useful for looping). Use matchAll for all matches with groups.
The dot . matches any character except newline by default. To include newlines, enable the s (dotAll) flag: /pattern/s.
Use the i flag: /pattern/i.
A group (...) captures the matched substring for later use (e.g., in replacements or via exec). Non-capturing groups (?:...) group without capturing.
Use string.matchAll(regex) with the g flag. It returns an iterator of match arrays including groups. Alternatively, loop with exec() while regex.lastIndex is valid.
Use a function to escape: str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&').
Search and copy HTML entities for arrows, math, currency, and symbols. See the glyph and code. Fast reference.
Choose Babel presets (env, React, TypeScript) and plugins. Get a clean babel.config.json to transpile your code. Local tool.
Stack multiple background images and blend them with colors. Create unique textures. Copy the CSS code instantly.
Generate the doGet() and doPost() boilerplate for a Google Apps Script web app. Ready to paste into the editor.
Search and filter all CSS properties that can be animated. See value types and example keyframes. Quick dev reference.
Select emojis and arrange them into a seamless tiling background. Copy the CSS data‑URI or download as image.
Recreate the target CSS linear gradient by adjusting stops and colors. A unique game for front‑end developers to master gradients.
Easily compute posterior probabilities given prior, likelihood, and marginal likelihood. Visual diagram. All local.
Select text and see the Selection object properties. Create ranges programmatically. Understand how rich‑text editors work.
Choose the right extinguisher for kitchen, electrical, or garage fires. Interactive class chart. Home safety education.
Quick reference of HTTP methods with their semantics, idempotency, and example REST usage. Static, fast.
Drag the virtual ring to perform multiplication, division, and unit conversions. Rediscover pre‑electronic calculator charm.
Create CSS animations and transitions without coding. Define keyframes, easing, and duration. Copy the @keyframes and animation code instantly.
Search for the NaOH and KOH sap values of various oils. Reference for cold process soap makers.
Drag and drop pieces to set up a chess position. Generate FEN string and copy to share. Analyze openings. Local only.
Create and format Markdown tables by adjusting rows and columns. Align text, copy the raw Markdown. Perfect for README files.
Adjust rotateX/Y/Z and translate to see a 3D box in real time. Copy optimized CSS transform.
Calculate wax weight and fragrance oil needed for container candles. Adjust fragrance load %. Common wax types supported. Local helper.
Search for common ingredient substitutions (e.g., buttermilk, egg, cornstarch). Quick reference for when you're missing something. Local data.
Enter a common chemical name to see summary hazard pictograms and precautions. Quick reference.
Generate truly random numbers within a specified range. Useful for contests, game decisions, and sampling. Runs locally, no hidden algorithms.
Create a reflection effect for images or text using box‑reflect. Adjust direction and offset. Copy the CSS.
See how `animation‑composition: replace, add, accumulate` works by layering animations on the same property. Understand the spec.
Drag words to the correct position in a sentence using in, on, at. Visual feedback.
Chain multiple CSS filter functions and see the result on an image. Copy the filter string. No upload.
Create a looping animated gradient background with multiple color stops. Copy the complete CSS keyframes. Eye‑catching.
Set up a chess position using FEN notation or drag pieces. Share the position link or screenshot. No AI, just board.
Calculate the exact amount of wax and fragrance oil needed based on container volume and desired scent load. DIY candle crafting.
Calculate maximum shutter speed before star trailing (NPF rule) and estimate trail length for creative effects.
Generate an SVG placeholder image with custom text, width, height, and colors. Use as a placeholder service. Pure SVG.