How to turn text orientation in the four diferent positions?

Any text.
How to turn text orientation in the four diferent positions?

Any text.
You can do this with \scalebox from the graphicx package:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\LaTeX\scalebox{-1}[1]{\LaTeX}
\scalebox{1}[-1]{\LaTeX}\scalebox{-1}[-1]{\LaTeX}
\end{document}

TikZ is another option:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\node (a) {\LaTeX};
\node[xscale=-1,right=of a] (b) {\LaTeX};
\node[yscale=-1,below=of a] (c) {\LaTeX};
\node[xscale=-1,yscale=-1,right=of c]{\LaTeX};
\end{tikzpicture}
\end{document}

And PSTricks offers \psscalebox:
\documentclass{article}
\usepackage{pstricks}
\begin{document}
\noindent\LaTeX\psscalebox{-1 1}{\LaTeX}\\
\psscalebox{1 -1}{\LaTeX}\psscalebox{-1 -1}{\LaTeX}
\end{document}
