Tiny Online Tools logoTiny Online ToolssearchSearch tools…grid_viewAll Tools
Homechevron_rightSVG Toolschevron_right10 PRINT Pattern Generator10 PRINT Pattern Generator

10 PRINT Pattern Generator

Generate the classic Commodore 64 '10 PRINT' maze pattern as SVG — control grid, colors, and thickness.

GridStyleGenerated codecodeSVGbrushCSS
xml
css

Similar Tools

SVG Isometric Pattern Generator

SVG Isometric Pattern Generator

Generate 3D-looking isometric cube pattern SVG — ideal for modern backgrounds, game tiles, and architectural illustrations.

SVG Circular Pattern Generator

SVG Circular Pattern Generator

Generate decorative SVG patterns from concentric rings, dot grids, or honeycomb-style offset dots.

SVG Dot Grid Pattern

SVG Dot Grid Pattern

Generate a clean SVG dot grid pattern with custom dot size, spacing, color, and optional staggered rows. Perfect for backgrounds, notebooks, UI design, and decorative textures.

SVG Zigzag Pattern Generator

SVG Zigzag Pattern Generator

Generate SVG zigzag and chevron patterns with custom amplitude, wavelength, row spacing, and stroke width. Great for retro textiles, bold backgrounds, and geometric overlays.

PDF Signature Tool

PDF Signature Tool

Draw a signature and place it on any page of a PDF. Drag to position, resize, and download — all in your browser.

SHA256 Generator

SHA256 Generator

Generate SHA-256 hashes from text.

PDF to Text

PDF to Text

Extract plain text from PDF files instantly in your browser. No uploads, no sign-up required.

apps

More Tools

Browse our full collection of free online tools.

The Famous One-Line C64 Program, Now as SVG

In 1982, a single-line BASIC program on the Commodore 64 captured a generation's imagination:

10 PRINT CHR$(205.5 + RND(1)); : GOTO 10

It repeatedly printed CHR$(205) (a forward slash) or CHR$(206) (a backslash), randomly, until the screen filled with an oddly mesmerizing maze-like pattern. This generator reproduces the same algorithm as a scalable, stylable SVG you can drop into any modern design.

How It Works

A cols × rows grid is placed on the canvas. For each cell, a seeded random function picks either a / or \ diagonal, drawn as a single <line>. The result is a crisp SVG with just a handful of elements per pattern — easy to hand-edit, easy to animate, and ridiculously small in file size.

Controls

  • Columns / Rows — how many cells in each direction.
  • Cell size — how big each cell renders in pixels.
  • Thickness — stroke width of each diagonal.
  • Color / Background — two-color scheme.
  • Seed + Re-roll — pin a layout you like, or re-roll for a fresh one.

Uses

  • Retro / demoscene-inspired landing pages
  • T-shirts and stickers for developer culture
  • Album covers and zines
  • Generative-art posters
  • CSS background-image decorations via data: URI

Because the output is SVG with only <line> elements, you can easily swap in CSS variables for the colors, animate the stroke using stroke-dasharray, or turn the pattern into a tiled pattern via <pattern> if you want an endless background.