Are you sure there are no spaces in the data (perhaps after the "+")? To check, you could try something like:
SELECT * FROM `population` WHERE demographic LIKE '%75+%'
Or you could trim the value:
SELECT * FORM `population` WHERE TRIM(`demographic`) = '75+'