Your All-in-One
Online Toolbox
Calculators, converters, generators, and productivity tools — all free, no signup required.
⭐ Featured Tools
Hand-picked tools our users love most
BMI Calculator
Work out your body mass index from metric or imperial height and weight, with the matching category band.
Color Palette Generator
Build a coordinated colour palette from a base shade and copy every hex code for CSS or design work.
Currency Converter
Convert an amount between major world currencies and see the pair rate alongside common cross-rate comparisons.
JSON Formatter
Pretty-print, minify or validate JSON and see its key count, array count, nesting depth and size before and after.
Loan Calculator
Calculate a fixed-rate loan's monthly payment, total interest and first-year amortisation from amount, rate and term.
Password Generator
Build random passwords of any length from 4 to 128 characters with chosen character sets and excluded characters.
Percentage Calculator
Find a percentage of a number, express one value as a percentage of another, and measure percentage change.
QR Code Generator
Encode a URL or block of text as a QR code, choose its size and colours, and download the result as a PNG.
To-Do List
A simple task list that saves to your browser automatically, with all, active and done filters.
Unit Converter
Convert between length, weight, area, volume, speed, data storage and temperature units in a single tool.
Browse by Category
29 categories of tools for every need
Basic Everyday Calculators
5 tools
media file converter
5 tools
Scientific & Math Calculators
3 tools
Finance Calculators
7 tools
Health & Fitness Calculators
5 tools
Date & Time Calculators
4 tools
Construction & Engineering
2 tools
Business Calculators
2 tools
Internet & Digital Calculators
2 tools
Unit Converters
7 tools
Expense Trackers
2 tools
To-Do Tools
1 tools
Pomodoro & Focus Timers
2 tools
QR Code Generators
1 tools
Password Generators
1 tools
Notes Tools
1 tools
File Tools
6 tools
CSV & Data Tools
2 tools
PDF Tools
3 tools
Image Tools
12 tools
Text Tools
6 tools
Color Tools
4 tools
Education & Learning
3 tools
Developer Tools
12 tools
Security Tools
4 tools
AI & Automation Tools
2 tools
Random Generators
6 tools
Mini Games
5 tools
Typography Tools
2 tools
🆕 Recently Added
The newest tools on our platform
Image to pdf
Combine JPG, PNG and WebP images into a single PDF with page size, orientation, margin and fitting controls.
Pdf to images
Render PDF pages as PNG or JPG at your chosen resolution, or extract the images embedded in the file.
Pdf to text Converter
Extract text from a PDF in your browser, then copy it to the clipboard or download it as a .txt file.
Text to pdf Converter
Convert plain text into a PDF with control over page size, orientation, margins, font size and alignment.
pdf editor
Add text, signatures, watermarks and page numbers to a PDF, and merge, split, rotate or reorder its pages.
mp3 editor
Trim audio on a waveform, add fades, adjust volume and export an MP3, all inside your browser.
screenshot to code
Turn a screenshot's colour palette into an HTML and CSS starter page in vanilla CSS or Tailwind.
Image upscaler
Enlarge images two, three or four times using Lanczos, bicubic or bilinear resampling without uploading anything.
Ready to get started?
Browse our complete library of free online tools — no account needed.
Lanczos, bicubic and bilinear resampling compared
Bilinear takes the four nearest source pixels and blends them linearly by distance. It is the cheapest to compute and produces smooth but noticeably soft results, because the linear weighting blurs edges.
Bicubic uses a four-by-four neighbourhood, sixteen source pixels, with the Keys cubic weighting function. The cubic curve holds edges better than a straight line, giving a sharper result than bilinear at moderately higher cost.
Lanczos-3 uses a windowed sinc function with a radius of three, drawing on a six-by-six neighbourhood of thirty-six source pixels. Sinc is the theoretically ideal reconstruction filter, and windowing makes it practical. It preserves fine detail and edge definition best, at the highest cost, which is why it is the default and also the slowest.
Resampling is applied separately in the horizontal and vertical directions, and the result is drawn to a canvas and encoded in your chosen format.
Worked example: a 640 by 480 image at 3x
The pixel count is where the cost becomes clear. The source holds 307,200 pixels. The output holds 2,764,800, which is nine times as many, because area scales with the square of the linear factor. Every one of those 2.76 million output pixels must be computed, and under Lanczos-3 each one is a weighted sum over a six-by-six neighbourhood, so roughly 36 multiply-and-add operations per channel per pixel. That is why the reported processing time rises steeply with the scale factor, and why 4x on a large photograph takes appreciably longer than 2x on a small one.
Only about 11 percent of the output pixels correspond to an original sample; the rest are interpolated estimates. This is the fundamental limit: the result holds no more real detail than the 640 by 480 source did. A good filter buys a cleaner, less blocky presentation of existing detail, not new information.
Saved as PNG at 1920 by 1440, the file is several times larger than the original despite carrying no extra detail.
What upscaling can and cannot recover
Where it works well is enlarging already-clean sources: line art, logos, diagrams, screenshots at moderate factors, and reasonably sharp photographs that simply need to fill a larger frame. Use the compare view at full size rather than judging from a thumbnail, since interpolation differences are invisible when the image is scaled down for display.
Existing flaws are magnified too. JPEG artefacts, sensor noise and moiré all become larger and more obvious, so start from the cleanest source available and prefer an untouched original.
On output format, choose PNG for graphics, screenshots and anything with flat colour or transparency, since it is lossless. For photographs, JPEG or WebP at 85 to 95 percent avoids adding fresh compression damage on top of the enlargement.