You can use a doubled tilde ~~ to get two spaces. But maybe \enskip can help too or you define a command, like \ds (for double space) to be flexible in future if you want to change the width of the doubled space.

\documentclass{article}
\newcommand{\ds}{~~}
\begin{document}
H H (normal Space)
H~~H (doubled Space with \verb+~~+, double Tilde)
H\ds H (doubled Space with userdefined \verb+\ds+)
H\enskip H (\verb+\enskip+)
H\quad H (\verb+\quad+)
H\qquad H (\verb+\qquad+)
H\hspace{5em} H (certain space with \verb+\hspace+)
\end{document}
If you need this only in special lists you may define a command taking the list as argument. I used xparse to define a command with a verbatim argument (type v) because \newcommmand will parse the argument and truncate the spaces before \obeyspaces can do its job.
\documentclass{article}
\usepackage{xparse}
\NewDocumentCommand{ \letterlist }{ v }
{%
{\obeyspaces#1}%
}
\begin{document}
A B C D E F
\letterlist{A B C D E F}
\end{document}

But the image shows that a single and a double space can be easily confused, so one may consider using other symbols to separate the list …
~~if you don't want them to break), but why do you need that? – Manuel Dec 05 '13 at 21:12~~, or call\obeyspacesinside a group and you don't have to worry about forcing it. – Werner Dec 05 '13 at 21:13<space><backslash><space>; for instancewith the page break. \ (Deep breath.) \ You got that?However, I don't see many cases where a double space is useful. Can you add an example? – egreg Dec 05 '13 at 21:15A B C J K). Then you have the same with words. This does not happen in normal text, only in these "lists". Anyway all proposed solutions are better than what I was using, but\obeyspacessuits best my use case. Didn't know about it, thanks. – Andreas Hettel Dec 05 '13 at 21:24\quad. – Aditya Dec 05 '13 at 22:09