This question is about all the non-ascii characters, å is only as an example.
I know you can type the character å two ways:
\usepackage[utf8]{inputenc}
...
Some text with a speciål character.
or
Some text with a speci\aa l character.
Which both generate the same result. However which method is preferred or best practice?
I'm using pdflatex if it makes any difference.
å. – egreg Jan 20 '15 at 16:24\aaso it really makes no difference, most people prefer the inputenc form if writing in a language that has non-ascii characters. What is more important is that whatever input form you use, you have\usepackage[T1]{fontenc}so hyphenation of words using such characters works correctly – David Carlisle Jan 20 '15 at 17:12