Transform HTML markup to BBCode for forums
BBCode (Bulletin Board Code) is a lightweight markup language used in forums, bulletin boards, and online communities like phpBB, vBulletin, and many others. HTML is the standard markup language for web pages. Converting HTML to BBCode allows you to take content from web pages and post it on traditional forums that only support BBCode formatting.
This tool transforms common HTML tags into their BBCode equivalents. It handles headings, bold, italic, lists, links, images, code blocks, and more. The output is ready to paste into any BBCode‑compatible forum or CMS.
All processing is done locally in your browser – your content never leaves your device.
Step 1: Paste your HTML into the input area. You can use the sample HTML as a guide.
Step 2: Click "Convert to BBCode". The tool transforms the HTML tags into BBCode.
Step 3: Copy the BBCode output using the "Copy BBCode" button.
Step 4: Paste the BBCode into your forum post or bulletin board editor.
The converter supports headings (H1-H6), bold, italic, underline, strikethrough, ordered/unordered lists, links, images, inline code, and code blocks. It also handles nested structures properly.
HTML: <h1>Heading 1</h1>
BBCode: [h1]Heading 1[/h1]
HTML: <strong>bold text</strong>
BBCode: [b]bold text[/b]
HTML: <a href="https://example.com">Link</a>
BBCode: [url=https://example.com]Link[/url]
HTML: <ul><li>Item</li></ul>
BBCode: [list][*]Item[/list]