To format dates, you need to use DateFormatter methods, for example:
const formattedStringOfDate = this.formatter.absoluteLongDate(this.adapter.today());
You can also use pipe:
<div>{{ adapter.today() | absoluteLongDate }}</div>
The pipe name (absoluteLongDate) corresponds to the name of the DateFormatter method. Examples of usage can be found here