Base-36 Converter Access
import ( "fmt" "strings" )
If the remainder is 10–35, convert it to the corresponding letter (A–Z). Use the quotient for the next division. Repeat until the quotient is zero. 150 ÷ 36 = 4 with a remainder of 6 . 4 ÷ 36 = 0 with a remainder of 4 . Reading bottom to top, the result is 46 . From Base-36 to Decimal: base-36 converter
Those 11-character strings in a YouTube URL ( dQw4w9WgXcQ ) are technically Base-64, but Base-36 is sometimes used in older systems. The principle is identical: encode a massive 64-bit integer into a short, shareable string. import ( "fmt" "strings" ) If the remainder