With
dataTS = FinancialData["GE", "Dividend", {{2020, 1, 1}, {2021, 12, 31}}]
you could do this
Select[Normal[dataTS], Between[#[[1]], {DateObject[{2020, 12, 1, 0, 0, 0}], DateObject[{2021, 9, 1, 0, 0, 0}]}] &]
With the legacy behavior, you could convert to DateObject in your selector:
dataLeg = FinancialData["GE", "Dividend", {{2020, 1, 1}, {2021, 12, 31}}, Method -> "Legacy"];
Select[dataLeg, Between[DateObject[#[[1]]], {DateObject[{2020, 12, 1, 0, 0, 0}], DateObject[{2021, 9, 1, 0, 0, 0}]}] &]