I have 8 columns in my table and everything fits perfectly except the very last value, which is about 5 columns long/wide (it's a very long binary string) and it's on the last row all by itself, I want it to be aligned like all the other values in the first column and just trail off, but tabular is pushing the second column all the way to the end of this one long string. It's understandable, it's just doing what it's programmed to do, but can I tell tabular to ignore how long this last value is so it can pass freely through all the columns without disrupting them?
\documentclass[10pt]{article}
\usepackage{verbatim}
\begin{document}
\begin{table}[]
\begin{tabular}{l|llllllll}
\hline %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\emph{utf-8} & \verb s & \verb & \verb | & \verb = & \verb ~ & \verb w & \verb & \verb Ù \\
\hline %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\emph{hexadec} & \verb 73 & \verb 89 & \verb 7C & \verb 3D & \verb 7E & \verb 77 & \verb 87 & \verb D9 \\
\emph{decimal} & \verb 115 & \verb 137 & \verb 124 & \verb 061 & \verb 126 & \verb 119 & \verb 135 & \verb 217 \\
\emph{binary} & \verb 01110011 & \verb 10001001 & \verb 01111100 & \verb 00111101 & \verb 01111110 & \verb 01110111 & \verb 10000111 & \verb 11011001 \\
& \verb 0111001110001001011111000011110101111110011101111000011111011001 & \\
\end{tabular}
\end{table}
\end{document}


\multicolumn{7}{l}{\ttfamily 011100111000100101111100001111010111....}– Ulrike Fischer May 20 '19 at 17:00\verbdelimited by spaces;-) – David Carlisle May 20 '19 at 17:23&used for alignment. At first I thought it was the spaces too, but it seems not. It was accidental either way, I originally used+as the delimiter, but it was being rendered. I removed the delimiter and it worked like a charm. – voices May 20 '19 at 17:36verbatimto format some code blocks. I wanted the same fixed width style and it was quick and painless compared to other things I tried. – voices May 20 '19 at 17:47\verb sand you will see the verb extends past the&which no longer ends the the cell, you do not want\verbat all here just a font change so\ttfamilyto get monospace. – David Carlisle May 20 '19 at 17:52