Skip to content

Instantly share code, notes, and snippets.

View theraccoonbear's full-sized avatar
💭
oh bother

Don Smith theraccoonbear

💭
oh bother
View GitHub Profile
@theraccoonbear
theraccoonbear / freeSpeechFlag.js
Last active May 20, 2025 20:38
Generate markup of a free-speech-flag-esque representation of arbitrary text.
function generateFlagHTML(text) {
// Convert text to hex
const hex = Array.from(text)
.map(c => c.charCodeAt(0).toString(16).padStart(2, '0'))
.join('');
// Pad hex string to multiple of 6 (RGB triplet)
const paddedHex = hex.padEnd(Math.ceil(hex.length / 6) * 6, '0');
// Chunk into RGB hex triplets